mirror of
https://github.com/immich-app/immich.git
synced 2026-02-09 11:20:00 +03: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:
@@ -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}
|
||||
|
||||
Reference in New Issue
Block a user