feat(admin-ui): catalog refresh + token migration (Stage 3.2)

This commit is contained in:
Александр Зимин
2026-05-11 09:08:38 +00:00
parent 3e19fd2cf9
commit 6db2a0c345
24 changed files with 289 additions and 273 deletions
+5 -5
View File
@@ -82,7 +82,7 @@ function MyDraftsPage() {
{drafts.data && drafts.data.totalElements > 0 && (
<Panel>
<div className="flex items-center justify-between mb-3">
<p className="text-2xs text-carbon/60">
<p className="text-2xs text-mute">
{t('myDrafts.total', { count: drafts.data.totalElements })}
</p>
</div>
@@ -109,10 +109,10 @@ function MyDraftsPage() {
<TableCell>
<Badge variant={statusVariant(d.status)}>{d.status}</Badge>
</TableCell>
<TableCell className="text-2xs text-carbon/70">
<TableCell className="text-2xs text-ink-2">
{new Date(d.submittedAt).toLocaleString()}
</TableCell>
<TableCell className="text-2xs text-carbon/70">
<TableCell className="text-2xs text-ink-2">
{d.reviewedAt
? new Date(d.reviewedAt).toLocaleString()
: '—'}
@@ -120,7 +120,7 @@ function MyDraftsPage() {
<TableCell className="font-mono text-2xs">
{d.reviewerId ?? '—'}
</TableCell>
<TableCell className="text-2xs text-carbon/80 max-w-md">
<TableCell className="text-2xs text-ink max-w-md">
{d.reviewComment ?? d.makerComment ?? '—'}
</TableCell>
<TableCell>
@@ -134,7 +134,7 @@ function MyDraftsPage() {
{t('myDrafts.action.withdraw')}
</Button>
) : (
<span className="text-2xs text-carbon/40"></span>
<span className="text-2xs text-mute/70"></span>
)}
</TableCell>
</TableRow>