We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 117945a commit 3107665Copy full SHA for 3107665
1 file changed
src/ui/SipTemplateWizard.qml
@@ -243,7 +243,7 @@ BaseWindow {
243
244
const val = {}
245
val[delg.target] = item.value
246
- control.values = Object.assign(control.values, val)
+ control.values = Object.assign({}, control.values, val)
247
}
248
249
@@ -266,7 +266,7 @@ BaseWindow {
266
function onValueChanged() {
267
268
val[delg.target] = widgetLoader.item?.value
269
270
271
272
0 commit comments