update
This commit is contained in:
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user