Skip to content

Commit afe34ec

Browse files
author
minjk-bl
committed
Fix bug on Subset app
1 parent 42d6284 commit afe34ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/m_apps/Subset.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1562,7 +1562,7 @@ define([
15621562
var rowList = [];
15631563
for (var i = 0; i < rowTags.length; i++) {
15641564
var rowValue = $(rowTags[i]).data('code');
1565-
if (rowValue != undefined) {
1565+
if (rowValue !== undefined) {
15661566
rowList.push(rowValue);
15671567
}
15681568
}

0 commit comments

Comments
 (0)