This commit is contained in:
philipp lang 2025-06-17 00:16:34 +02:00
parent 4d25f5e56d
commit ce976c1108
2 changed files with 5 additions and 6 deletions

View File

@ -100,7 +100,7 @@ function changeMode(mode) {
function update(index, key, value) {
const inner = {...props.modelValue};
if (key === 'comparator') {
var old = inner.ifs[index];
const old = inner.ifs[index];
inner.ifs[index] = {
field: old.field,
comparator: value,
@ -108,7 +108,6 @@ function update(index, key, value) {
};
}
if (key === 'field') {
var old = inner.ifs[index];
inner.ifs[index] = {
field: value,
comparator: null,

View File

@ -80,13 +80,13 @@
<div>
<ui-tabs v-model="activeMailTab" :entries="mailTabs" />
<f-editor v-if="activeMailTab === 0" id="mail_top" v-model="single.mail_top" name="mail_top" label="E-Mail-Teil 1" :rows="8" conditions required>
<template #conditions="{data, resolve}">
<conditions-form id="mail_top_conditions" :single="single" :value="data" @save="resolve" />
<template #conditions="{cData, resolve}">
<conditions-form id="mail_top_conditions" :single="single" :value="cData" @save="resolve" />
</template>
</f-editor>
<f-editor v-if="activeMailTab === 1" id="mail_bottom" v-model="single.mail_bottom" name="mail_bottom" label="E-Mail-Teil 2" :rows="8" conditions required>
<template #conditions="{data, resolve}">
<conditions-form id="mail_bottom_conditions" :single="single" :value="data" @save="resolve" />
<template #conditions="{d, resolve}">
<conditions-form id="mail_bottom_conditions" :single="single" :value="d" @save="resolve" />
</template>
</f-editor>
</div>