Skip to content

Commit

Permalink
Update this.value to this.sliderValue after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
joepavitt committed Dec 4, 2024
1 parent a437b72 commit 841834e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/widgets/ui-slider/UISlider.vue
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ export default {
},
onSync (msg) {
if (typeof msg?.payload !== 'undefined') {
this.value = Number(msg.payload)
this.sliderValue = Number(msg.payload)
}
},
// Validate the text field input
Expand Down

0 comments on commit 841834e

Please sign in to comment.