From 0f491028860dfe3e4dea6c81644ea1d0829fb192 Mon Sep 17 00:00:00 2001 From: liumengyi Date: Thu, 13 Jan 2022 14:36:05 +0800 Subject: [PATCH] * Fix bug for execution kanban view. --- module/execution/view/kanban.html.php | 1 + module/kanban/model.php | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/view/kanban.html.php b/module/execution/view/kanban.html.php index edc0a9bbf4..7b7ff697d7 100644 --- a/module/execution/view/kanban.html.php +++ b/module/execution/view/kanban.html.php @@ -26,6 +26,7 @@ js::set('storyLang', $lang->story); js::set('executionLang', $lang->execution); js::set('bugLang', $lang->bug); js::set('taskLang', $lang->task); +js::set('deadlineLang', $lang->task->deadlineAB); js::set('kanbancolumnLang', $lang->kanbancolumn); js::set('kanbancardLang', $lang->kanbancard); js::set('executionID', $execution->id); diff --git a/module/kanban/model.php b/module/kanban/model.php index cdbd071a41..a1a4dbaa69 100644 --- a/module/kanban/model.php +++ b/module/kanban/model.php @@ -1815,7 +1815,6 @@ class kanbanModel extends model foreach($columnList as $type => $name) { $data = new stdClass(); - $data->lane = $laneID; $data->name = $name; $data->color = '#333'; $data->type = $type;