Compare commits
2 Commits
065050acaa
...
354f2c07d8
| Author | SHA1 | Date |
|---|---|---|
|
|
354f2c07d8 | |
|
|
6c3e01d534 |
|
|
@ -1,5 +1,9 @@
|
||||||
# Letzte Änderungen
|
# Letzte Änderungen
|
||||||
|
|
||||||
|
### 1.12.25
|
||||||
|
|
||||||
|
- Ein Bug wurde behoben, sodass nun wieder Bedingungen für Formular-Mails vergeben werden können
|
||||||
|
|
||||||
### 1.12.24
|
### 1.12.24
|
||||||
|
|
||||||
- Gruppen werden nun wöchentlich aus NaMi neu abgerufen
|
- Gruppen werden nun wöchentlich aus NaMi neu abgerufen
|
||||||
|
|
|
||||||
|
|
@ -69,13 +69,13 @@
|
||||||
<div>
|
<div>
|
||||||
<ui-tabs v-model="activeMailTab" :entries="mailTabs" />
|
<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>
|
<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="{cData, resolve}">
|
<template #conditions="{data, resolve}">
|
||||||
<conditions-form id="mail_top_conditions" :single="single" :value="cData" @save="resolve" />
|
<conditions-form id="mail_top_conditions" :single="single" :value="data" @save="resolve" />
|
||||||
</template>
|
</template>
|
||||||
</f-editor>
|
</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>
|
<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="{d, resolve}">
|
<template #conditions="{data, resolve}">
|
||||||
<conditions-form id="mail_bottom_conditions" :single="single" :value="d" @save="resolve" />
|
<conditions-form id="mail_bottom_conditions" :single="single" :value="data" @save="resolve" />
|
||||||
</template>
|
</template>
|
||||||
</f-editor>
|
</f-editor>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue