HOTFIX: remove const
from SumInputNode to allow default value fixing
This commit is contained in:
parent
3f5ed9b38b
commit
1303c959b1
1 changed files with 1 additions and 1 deletions
|
@ -928,7 +928,7 @@ class SkillPointSetterNode extends ComputeNode {
|
|||
*/
|
||||
class SumNumberInputNode extends InputNode {
|
||||
compute_func(input_map) {
|
||||
const value = this.input_field.value;
|
||||
let value = this.input_field.value;
|
||||
if (value === "") { value = 0; }
|
||||
|
||||
let input_num = 0;
|
||||
|
|
Loading…
Reference in a new issue