From 752f2f39708a4cfa76e958d13bb6dee86f3f27d6 Mon Sep 17 00:00:00 2001 From: wangyuting Date: Thu, 9 Nov 2023 02:49:35 +0000 Subject: [PATCH] * Fix sort column bug. --- module/kanban/model.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/module/kanban/model.php b/module/kanban/model.php index bf551507d6..4414d407a2 100755 --- a/module/kanban/model.php +++ b/module/kanban/model.php @@ -1131,6 +1131,7 @@ class kanbanModel extends model $item['region'] = $lane->region; $item['title'] = htmlspecialchars_decode($lane->name); $item['color'] = $lane->color; + $item['order'] = $lane->order; foreach($actions as $action) { @@ -1195,6 +1196,7 @@ class kanbanModel extends model $item['group'] = $column->group; $item['parent'] = $column->parent; $item['color'] = $column->color; + $item['order'] = $column->order; if($column->parent > 0) $item['parentName'] = $column->parent; /* Judge column action priv. */