Skip to content

Commit 9566b24

Browse files
authored
Input widget: update the slider position when updating a value using the edit box.
2 parents ca956cc + 1219d9c commit 9566b24

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"url": "git+https://github.com/opencor/webapp.git"
2424
},
2525
"type": "module",
26-
"version": "0.20250713.0",
26+
"version": "0.20250714.0",
2727
"pnpm": {
2828
"onlyBuiltDependencies": [
2929
"@tailwindcss/oxide",

src/renderer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"url": "git+https://github.com/opencor/webapp.git"
1717
},
1818
"type": "module",
19-
"version": "0.20250713.0",
19+
"version": "0.20250714.0",
2020
"devDependencies": {
2121
"@primeuix/themes": "^1.2.1",
2222
"@primevue/auto-import-resolver": "^4.3.6",

src/renderer/src/components/widgets/InputWidget.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ function emitChange(newValue: number) {
6565
value.value = newValue
6666
6767
if (props.possibleValues === undefined) {
68+
scalarValue.value = newValue
6869
scalarValueString.value = String(newValue) // This will properly format the input text.
6970
}
7071

0 commit comments

Comments
 (0)