mirror of
https://github.com/samsonjs/immich.git
synced 2026-03-25 09:15:56 +00:00
fix: reduce queue graph jitter and include paused count (#26023)
fix: reduce queue graph jitter and show paused count
This commit is contained in:
parent
5b705cb723
commit
b524d7b6fd
2 changed files with 3 additions and 2 deletions
|
|
@ -75,6 +75,7 @@
|
|||
show: false,
|
||||
},
|
||||
width: 2,
|
||||
pxAlign: 0,
|
||||
};
|
||||
|
||||
const options: uPlot.Options = {
|
||||
|
|
@ -91,7 +92,7 @@
|
|||
width: 200,
|
||||
height: 200,
|
||||
ms: 1,
|
||||
pxAlign: true,
|
||||
pxAlign: 0,
|
||||
scales: {
|
||||
y: {
|
||||
distr: 1,
|
||||
|
|
|
|||
|
|
@ -53,7 +53,7 @@
|
|||
|
||||
<div class="flex gap-1 mb-4">
|
||||
<Badge>{$t('active_count', { values: { count: queue.statistics.active } })}</Badge>
|
||||
<Badge>{$t('waiting_count', { values: { count: queue.statistics.waiting } })}</Badge>
|
||||
<Badge>{$t('waiting_count', { values: { count: queue.statistics.waiting + queue.statistics.paused } })}</Badge>
|
||||
{#if queue.statistics.failed > 0}
|
||||
<Badge color="danger">{$t('failed_count', { values: { count: queue.statistics.failed } })}</Badge>
|
||||
{/if}
|
||||
|
|
|
|||
Loading…
Reference in a new issue