From 7e5c80bcd8384d361fcf296b618c8a9a598cc80c Mon Sep 17 00:00:00 2001 From: chaideqing Date: Fri, 29 Dec 2023 16:35:57 +0800 Subject: [PATCH] * Fix bug #40322. --- module/execution/model.php | 1 + 1 file changed, 1 insertion(+) diff --git a/module/execution/model.php b/module/execution/model.php index 4a56dde322..2fb6c692e8 100755 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -5880,6 +5880,7 @@ class executionModel extends model if($sortType) $set->sortType = $sortType; if(isset($set->width)) $set->width = str_replace('px', '', $set->width); + if(empty($set->fixed) || $set->fixed == 'no') $set->fixed = 'right'; unset($set->id);