Compare commits
No commits in common. "354f2c07d81834b80f1a93890dca285df8a5bbda" and "065050acaa9367705be9767b575f0adbb1e8afa2" have entirely different histories.
354f2c07d8
...
065050acaa
|
|
@ -1,9 +1,5 @@
|
|||
# Letzte Änderungen
|
||||
|
||||
### 1.12.25
|
||||
|
||||
- Ein Bug wurde behoben, sodass nun wieder Bedingungen für Formular-Mails vergeben werden können
|
||||
|
||||
### 1.12.24
|
||||
|
||||
- Gruppen werden nun wöchentlich aus NaMi neu abgerufen
|
||||
|
|
|
|||
|
|
@ -69,13 +69,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>
|
||||
|
|
|
|||
Loading…
Reference in New Issue