feat: image editing (#24155)

This commit is contained in:
Brandon Wees
2026-01-09 17:59:52 -05:00
committed by GitHub
parent 76241a7b2b
commit e8c80d88a5
141 changed files with 7836 additions and 1634 deletions
+5
View File
@@ -29,6 +29,7 @@ import {
mdiLibraryShelves,
mdiOcr,
mdiPause,
mdiPencil,
mdiPlay,
mdiPlus,
mdiStateMachine,
@@ -241,6 +242,10 @@ export const asQueueItem = ($t: MessageFormatter, queue: { name: QueueName }): Q
icon: mdiStateMachine,
title: $t('workflows'),
},
[QueueName.Editor]: {
icon: mdiPencil,
title: $t('editor'),
},
};
return items[queue.name];