Skip to content

Commit

Permalink
fix: speed를 자유롭게 입력할 수 있도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
HyeokjinKang committed Apr 28, 2024
1 parent 22b475b commit fc96961
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions public/js/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -1705,16 +1705,6 @@ const triggersInput = (v, e) => {
title: "Input Error",
message: "Input value is not number.",
});
} else if (Number(e.value) < 0) {
iziToast.error({
title: "Input Error",
message: "Input value must not be less than 0.",
});
} else if (Number(e.value) > 5) {
iziToast.error({
title: "Input Error",
message: "Input value must not be more than 5.",
});
} else {
pattern.triggers[selectedCntElement.i][v] = Number(e.value);
patternChanged();
Expand Down

0 comments on commit fc96961

Please sign in to comment.