This commit is contained in:
Marek Lenczewski
2026-03-31 18:09:15 +02:00
parent b6a4548732
commit b998940caa
48 changed files with 717 additions and 816 deletions

View File

@@ -13,7 +13,7 @@ const categoriesStore = useCategoriesStore()
const loading = ref(true)
const saving = ref(false)
const occurrence = ref(null)
const form = ref({ name: '', status: 'aktiv', date: '', categoryId: null })
const form = ref({ name: '', status: 'active', date: '', categoryId: null })
async function load() {
loading.value = true
@@ -85,8 +85,8 @@ onMounted(() => {
<div class="form-group flex-1">
<label for="status">Status</label>
<select id="status" v-model="form.status">
<option value="aktiv">Aktiv</option>
<option value="erledigt">Erledigt</option>
<option value="active">Aktiv</option>
<option value="done">Erledigt</option>
</select>
</div>
<div class="form-group flex-1">