Skip to content

Commit f5e51d0

Browse files
authored
fix: PrimitiveNode combo widget value not persisting in vueNodes mode (#7782)
## Summary - Add missing v-model binding to WidgetWithControl in WidgetSelect.vue - Trigger callback after setting widget value in PrimitiveNode to update linked widgets The combo widget value was lost because PrimitiveNode creates combo widgets with controlWidget (via addValueControlWidgets), causing it to use the WidgetWithControl branch which was missing v-model binding. fix #7694 and #7696 ## Screenshots before https://github.com/user-attachments/assets/0a0dc668-eb71-4072-b5f7-0c20483fc1ff after https://github.com/user-attachments/assets/dfd2274c-8ebf-4105-821a-946063d87e9a
1 parent 27caaa3 commit f5e51d0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/renderer/extensions/vueNodes/widgets/components/WidgetSelect.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
/>
1313
<WidgetWithControl
1414
v-else-if="widget.controlWidget"
15+
v-model="modelValue"
1516
:component="WidgetSelectDefault"
1617
:widget="widget as StringControlWidget"
1718
/>

0 commit comments

Comments
 (0)