* [bug#62175,done,0.2h] fix bug.

This commit is contained in:
sunguangming
2025-05-09 13:41:25 +08:00
committed by 刘刚
parent 3c56d873d2
commit b6ad5f14f7
2 changed files with 0 additions and 2 deletions
-1
View File
@@ -25,7 +25,6 @@ $config->kanban->editcard = new stdclass();
$config->kanban->editregion = new stdclass();
$config->kanban->splitcolumn = new stdclass();
$config->kanban->setwip->requiredFields = 'limit';
$config->kanban->setlane->requiredFields = 'name,type';
$config->kanban->setColumn->requiredFields = 'name';
$config->kanban->create->requiredFields = 'space,name';
-1
View File
@@ -3096,7 +3096,6 @@ class kanbanModel extends model
$this->dao->update(TABLE_KANBANCOLUMN)->data($WIP, 'noLimit')
->autoCheck()
->checkIF($WIP->limit != -1, 'limit', 'gt', 0)
->batchcheck($this->config->kanban->setwip->requiredFields, 'notempty')
->where('id')->eq($columnID)
->exec();