summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/RegistrationModuleEdit.vue
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/src/components/RegistrationModuleEdit.vue')
-rw-r--r--webapp/src/components/RegistrationModuleEdit.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/src/components/RegistrationModuleEdit.vue b/webapp/src/components/RegistrationModuleEdit.vue
index 81b15fb..b0ad9e9 100644
--- a/webapp/src/components/RegistrationModuleEdit.vue
+++ b/webapp/src/components/RegistrationModuleEdit.vue
@@ -27,7 +27,7 @@
<div class="headline">{{ dialog.info.id ? $t('titleExisting') : $t('titleNew') }}</div>
</v-card-title>
<v-card-text style="height: 100%;">
- <v-layout row wrap>
+ <v-layout wrap>
<v-flex xs12 sm9>
<v-text-field prepend-icon="label" :label="$t('name')" color="primary" v-model="name"></v-text-field>
</v-flex>
@@ -47,7 +47,7 @@
<v-divider></v-divider>
<v-card-actions>
<v-spacer></v-spacer>
- <v-btn flat="flat" @click="setDialog({ show: false })">{{ $t('cancel') }}</v-btn>
+ <v-btn text="flat" @click="setDialog({ show: false })">{{ $t('cancel') }}</v-btn>
<v-btn :color="dialog.info.id ? 'primary' : 'success'" @click="saveHook">{{ dialog.info.id ? $t('save') : $t('create') }}</v-btn>
</v-card-actions>
</v-card>