From f0449398beeda35283c1326a2fdbb1fc490849e0 Mon Sep 17 00:00:00 2001 From: songchenxuan Date: Tue, 7 Nov 2023 13:37:10 +0800 Subject: [PATCH] * Fix bug #40081. --- module/pivot/js/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/pivot/js/common.js b/module/pivot/js/common.js index 9545d6e0f9..affd8bad13 100644 --- a/module/pivot/js/common.js +++ b/module/pivot/js/common.js @@ -188,7 +188,7 @@ function validate(showError = false) { var error = '
' + notemptyLang.replace('%s', pivotLang.step2.columnField) + '
'; $column.find('#column').addClass('has-error'); - $column.find('#column').next().after(error); + $column.find('#column').parent().after(error); } }