0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-28 20:03:02 +00:00

adapt width of table to date iso and remove colors

This commit is contained in:
Víctor Losada Hernández
2025-02-12 23:10:51 +01:00
parent b79c5954ff
commit 1f3a0f1f99
2 changed files with 4 additions and 19 deletions

View File

@@ -48,7 +48,7 @@ const authorLookup = ()=>{
<td><strong>{brew.title}</strong></td>
<td><a href={`/share/${brew.shareId}`}>{brew.shareId}</a></td>
<td>{brew.editId}</td>
<td>{brew.updatedAt}</td>
<td style={{ width: '200px' }}>{brew.updatedAt}</td>
<td>{brew.googleId ? 'Google' : 'Homebrewery'}</td>
</tr>;
})}