Commit 3db172e
frontend: fix InlineParameterEditor not displaying zero values
The truthiness check `if (this.param?.value)` treated 0 as falsy,
so `internal_new_value_as_string` was never set and the field showed
the placeholder label instead of "0". Use `this.param != null` to
check for parameter existence regardless of its value.
Made-with: Cursor1 parent 29fc497 commit 3db172e
1 file changed
Lines changed: 1 addition & 1 deletion
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
322 | 322 | | |
323 | 323 | | |
324 | 324 | | |
325 | | - | |
| 325 | + | |
326 | 326 | | |
327 | 327 | | |
328 | 328 | | |
| |||
0 commit comments