Skip to content

Commit

Permalink
set a determined width to the date column in the history table (#528)
Browse files Browse the repository at this point in the history
  • Loading branch information
Danble authored Feb 5, 2025
1 parent a6ec985 commit aaf365d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<td class:font-bold={$sortedColumn === 'field'}>
{`${JSON.stringify(record.change.data)}` || ''}
</td>
<td class:font-bold={$sortedColumn === 'date'}>
<td class="md:w-32" class:font-bold={$sortedColumn === 'date'}>
{supabase_date_to_friendly(record.timestamp, $page.data.locale) || ''}
</td>
</tr>

0 comments on commit aaf365d

Please sign in to comment.