This commit is contained in:
SPRINX0\prochazka
2024-09-26 14:52:50 +02:00
parent e2f352149d
commit 6f1f5f84c6

View File

@@ -145,10 +145,14 @@
const newValues = {}; const newValues = {};
for (const source of newSources) { for (const source of newSources) {
if (values.fixedTargetPureName) { if (values.fixedTargetPureName) {
if (!values[`targetName_${source}`]) {
newValues[`targetName_${source}`] = values.fixedTargetPureName; newValues[`targetName_${source}`] = values.fixedTargetPureName;
}
if (!values[`actionType_${source}`]) {
newValues[`actionType_${source}`] = 'appendData'; newValues[`actionType_${source}`] = 'appendData';
} }
} }
}
valuesStore.set({ valuesStore.set({
...values, ...values,
...newValues, ...newValues,