From 2973100b3556465a258fb5553fa809839db76e22 Mon Sep 17 00:00:00 2001 From: wangyidong Date: Wed, 27 Nov 2024 15:20:07 +0800 Subject: [PATCH] * [perf story #69666] Add is-pinned class for action for batch create. --- module/task/js/batchcreate.ui.js | 1 + 1 file changed, 1 insertion(+) diff --git a/module/task/js/batchcreate.ui.js b/module/task/js/batchcreate.ui.js index 954ee0f491..4eee525679 100644 --- a/module/task/js/batchcreate.ui.js +++ b/module/task/js/batchcreate.ui.js @@ -271,5 +271,6 @@ window.handleRenderRow = function($row, index) /* 创建隐藏表单域用于向服务器提交当前行层级信息。 */ $row.find(nestedTextSelector).text(text).append(``); + $row.find('.form-batch-col-actions').addClass('is-pinned'); if(edition == 'open' && (level > 0 || parentID)) $row.find('button[data-type=addSub]').attr('disabled', 'disabled'); };