From baf9c3704e8c579666bd5161dcdc1baddd9d9adc Mon Sep 17 00:00:00 2001 From: Dylan Whyte Date: Wed, 3 Feb 2021 14:15:57 +0100 Subject: [PATCH] ui: task summary: add verification jobs to count fixes a bug in which verification jobs were being excluded from the verify task summary. Signed-off-by: Dylan Whyte --- www/Dashboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/Dashboard.js b/www/Dashboard.js index 3aecc878..52107a8e 100644 --- a/www/Dashboard.js +++ b/www/Dashboard.js @@ -159,7 +159,7 @@ Ext.define('PBS.Dashboard', { type = 'sync'; } - if (type.startsWith('verify')) { + if (type.startsWith('verif')) { type = 'verify'; }