fix: only show when images are processing

This commit is contained in:
2025-07-18 11:17:33 +01:00
parent a94c7255c6
commit e74975a52a

View File

@ -56,6 +56,7 @@ export const ProcessingImages: Component = () => {
Object.keys(notifications.state.ProcessingImages).length;
return (
<Show when={processingNumber() > 0}>
<Popover sameWidth gutter={4}>
<Popover.Trigger class="w-full flex justify-between rounded-xl bg-slate-800 text-gray-100 px-4 py-2">
<Show
@ -101,5 +102,6 @@ export const ProcessingImages: Component = () => {
</Popover.Content>
</Popover.Portal>
</Popover>
</Show>
);
};