chore: type issues

pull/24205/head
izzy 2025-12-17 15:53:24 +00:00
parent f1c7f13d20
commit b2053503bb
No known key found for this signature in database
3 changed files with 6 additions and 1 deletions

View File

@ -243,6 +243,10 @@ export const asQueueItem = ($t: MessageFormatter, queue: { name: QueueName }): Q
icon: mdiStateMachine, icon: mdiStateMachine,
title: $t('workflow'), title: $t('workflow'),
}, },
[QueueName.IntegrityCheck]: {
icon: '',
title: 'TODO',
},
}; };
return items[queue.name]; return items[queue.name];

View File

@ -163,6 +163,7 @@ export const getQueueName = derived(t, ($t) => {
[QueueName.BackupDatabase]: $t('admin.backup_database'), [QueueName.BackupDatabase]: $t('admin.backup_database'),
[QueueName.Ocr]: $t('admin.machine_learning_ocr'), [QueueName.Ocr]: $t('admin.machine_learning_ocr'),
[QueueName.Workflow]: $t('workflow'), [QueueName.Workflow]: $t('workflow'),
[QueueName.IntegrityCheck]: 'TODO',
}; };
return names[name]; return names[name];

View File

@ -8,7 +8,7 @@ export const load = (async ({ params, url }) => {
await authenticate(url, { admin: true }); await authenticate(url, { admin: true });
const integrityReport = await getIntegrityReport({ const integrityReport = await getIntegrityReport({
maintenanceGetIntegrityReportDto: { integrityGetReportDto: {
type, type,
}, },
}); });