Commit bd22e45a by CaIon

style(keys): widen the desktop quota column

Increase the quota column width and minimum width from 220px to 260px to give the side-by-side amounts more room.

Validation: all 26 API key listing tests, TypeScript, scoped lint, formatting, and git diff checks passed.
parent 551bb63e
...@@ -137,8 +137,8 @@ export function useApiKeysColumns(now: number): ColumnDef<ApiKey>[] { ...@@ -137,8 +137,8 @@ export function useApiKeysColumns(now: number): ColumnDef<ApiKey>[] {
accessorKey: 'remain_quota', accessorKey: 'remain_quota',
header: `${t('Quota')} (${quotaUnit})`, header: `${t('Quota')} (${quotaUnit})`,
cell: ({ row }) => <ApiKeyQuotaCell apiKey={row.original} now={now} />, cell: ({ row }) => <ApiKeyQuotaCell apiKey={row.original} now={now} />,
size: 220, size: 260,
minSize: 220, minSize: 260,
}, },
{ {
accessorKey: 'group', accessorKey: 'group',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment