Skip to content

Commit 6f2229e

Browse files
authored
Merge pull request #2425 from entrylabs/develop
0일 값이 경우 수정이 바꾸기 블럭이 안되는 오류 수정
2 parents c3e283a + 9360cdd commit 6f2229e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/class/source/DataTableSource.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ class DataTableSource {
145145

146146
isExist(index) {
147147
const isExist = this.getValue(index);
148-
return !!(isExist === null || isExist);
148+
return !!(isExist === null || isExist === 0 || isExist);
149149
}
150150

151151
appendRow(data) {

src/css/components/popup.less

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,12 @@
8989
.ai_learning {
9090
overflow: hidden;
9191
.learningInputPopup {
92+
border: none;
9293
height: 248px;
9394
width: 294px;
9495
background-color: #fff;
9596
border-bottom-right-radius: 5px;
9697
border-bottom-left-radius: 5px;
97-
border: none;
9898
}
9999
.learningInputPopup.text {
100100
height: 165px;

0 commit comments

Comments
 (0)