Skip to content

Commit f9388f6

Browse files
authored
Merge pull request #22 from xsu1010/master
Fixed label/icon input char limit
2 parents f43d081 + 9dd0697 commit f9388f6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

client/src/components/popups/LinePopup.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,9 +114,9 @@ const LinePopup: FC<LinePopupProps> = (props) => {
114114
text="Save"
115115
disabled={
116116
!(
117-
color.trim().length > 3 &&
118-
label.trim().length > 3 &&
119-
icon.trim().length > 3
117+
color.trim().length >= 3 &&
118+
label.trim().length >= 3 &&
119+
icon.trim().length >= 3
120120
)
121121
}
122122
/>

0 commit comments

Comments
 (0)