From cc3fb38f5056dc23ec5d09545b001b92f3f123bd Mon Sep 17 00:00:00 2001 From: Hao Sun Date: Tue, 26 Oct 2021 14:55:12 +0800 Subject: [PATCH] * fix maxCount not show in kanban header. --- module/execution/js/kanbandemo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/js/kanbandemo.js b/module/execution/js/kanbandemo.js index d5c2ba7f21..144e65475f 100644 --- a/module/execution/js/kanbandemo.js +++ b/module/execution/js/kanbandemo.js @@ -490,7 +490,7 @@ addColumnRenderer('task', renderTaskItem); */ function renderColumnCount($count, count, col) { - var text = count + '/' + (!col.maxCount ? '' : ''); + var text = count + '/' + (col.maxCount || ''); $count.html(text + ''); }