We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ca8521 commit 728dba2Copy full SHA for 728dba2
packages/editor-ui/src/components/ParameterInputFull.vue
@@ -194,7 +194,8 @@ function onDrop(newParamValue: string) {
194
watch(
195
() => props.isReadOnly,
196
(isReadOnly) => {
197
- if (isReadOnly) {
+ // Patch fix, see https://linear.app/n8n/issue/ADO-2974/resource-mapper-values-are-emptied-when-refreshing-the-columns
198
+ if (isReadOnly && props.parameter.disabledOptions !== undefined) {
199
valueChanged({ name: props.path, value: props.parameter.default });
200
}
201
},
0 commit comments