Skip to content

Commit af272ea

Browse files
author
minjk-bl
committed
Fix MultiSelector for multiple dataframe selected
1 parent 3a0fc6b commit af272ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

js/com/component/MultiSelector.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ define([
141141
}
142142

143143
_getColumnList(parent, callback) {
144-
if (parent && parent.length > 1) {
145-
vpKernel.getColumnList(parent).then(function(resultObj) {
144+
if (Array.isArray(parent) && parent.length > 1) {
145+
vpKernel.getCommonColumnList(parent).then(function(resultObj) {
146146
let { result } = resultObj;
147147
try {
148148
var colList = JSON.parse(result);

0 commit comments

Comments
 (0)