HOTFIX: janky patch to make editable fields work without full page update
This commit is contained in:
parent
eeb5d61c74
commit
0e66c63cda
1 changed files with 4 additions and 0 deletions
|
@ -951,6 +951,8 @@ class EditableIDSetterNode extends ComputeNode {
|
||||||
this.notify_nodes = notify_nodes.slice();
|
this.notify_nodes = notify_nodes.slice();
|
||||||
for (const child of this.notify_nodes) {
|
for (const child of this.notify_nodes) {
|
||||||
child.link_to(this);
|
child.link_to(this);
|
||||||
|
child.fail_cb = true;
|
||||||
|
child.mark_input_clean(this.name, null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -987,6 +989,8 @@ class SkillPointSetterNode extends ComputeNode {
|
||||||
this.notify_nodes = notify_nodes.slice();
|
this.notify_nodes = notify_nodes.slice();
|
||||||
for (const child of this.notify_nodes) {
|
for (const child of this.notify_nodes) {
|
||||||
child.link_to(this);
|
child.link_to(this);
|
||||||
|
child.fail_cb = true;
|
||||||
|
child.mark_input_clean(this.name, null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue