This commit is contained in:
tianshujie
2022-11-04 10:20:58 +08:00
parent 787ba2ad2d
commit 3d40cba711
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1150,7 +1150,7 @@ class executionModel extends model
->batchCheck($this->config->kanban->edit->requiredFields, 'notempty')
->checkIF(!$execution->fluidBoard, 'colWidth', 'ge', 200)
->batchCheckIF($execution->fluidBoard, 'minColWidth,maxColWidth', 'ge', 200)
->checkIF($execution->minColWidth and $execution->maxColWidth and $execution->fluidBoard, 'maxColWidth', 'gt', $execution->minColWidth)
->checkIF($execution->minColWidth >= 200 and $execution->maxColWidth >= 200 and $execution->fluidBoard, 'maxColWidth', 'gt', $execution->minColWidth)
->where('id')->eq((int)$executionID)
->exec();
}