We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 359de6e commit 75285d9Copy full SHA for 75285d9
core/frontend/src/components/parameter-editor/InlineParameterEditor.vue
@@ -178,7 +178,7 @@ export default Vue.extend({
178
watch: {
179
param(newParam) {
180
this.internal_new_value = newParam?.value ?? 0
181
- this.internal_new_value_as_string = this.internal_new_value.toString()
+ this.internal_new_value_as_string = String(this.internal_new_value)
182
},
183
is_form_valid(valid) {
184
this.$emit('form-valid-change', valid)
@@ -200,6 +200,7 @@ export default Vue.extend({
200
this.updateSelectedFlags()
201
if (this.last_sent_value === undefined) {
202
this.internal_new_value = this.param_value
203
204
}
205
206
0 commit comments