mirror of
https://framagit.org/les/gancio.git
synced 2025-01-31 16:42:22 +01:00
fix submit input collection
This commit is contained in:
parent
6bda3574de
commit
fd8f440442
1 changed files with 1 additions and 2 deletions
|
@ -14,7 +14,7 @@ v-container
|
||||||
v-card(color='secondary')
|
v-card(color='secondary')
|
||||||
v-card-title {{$t('admin.edit_collection')}}
|
v-card-title {{$t('admin.edit_collection')}}
|
||||||
v-card-text
|
v-card-text
|
||||||
v-form(v-model='valid' ref='form')
|
v-form(v-model='valid' ref='form' @submit.prevent.native='saveCollection')
|
||||||
v-text-field(
|
v-text-field(
|
||||||
v-if='!collection.id'
|
v-if='!collection.id'
|
||||||
:rules="[$validators.required('common.name')]"
|
:rules="[$validators.required('common.name')]"
|
||||||
|
@ -71,7 +71,6 @@ v-container
|
||||||
v-col(cols=2)
|
v-col(cols=2)
|
||||||
v-btn(color='primary' text @click='addFilter' :disabled='!collection.id || !filterPlaces.length && !filterTags.length') add <v-icon v-text='mdiPlus'></v-icon>
|
v-btn(color='primary' text @click='addFilter' :disabled='!collection.id || !filterPlaces.length && !filterTags.length') add <v-icon v-text='mdiPlus'></v-icon>
|
||||||
|
|
||||||
|
|
||||||
v-data-table(
|
v-data-table(
|
||||||
:headers='filterHeaders'
|
:headers='filterHeaders'
|
||||||
:items='filters'
|
:items='filters'
|
||||||
|
|
Loading…
Reference in a new issue