summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/BackendModuleSync.vue
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/src/components/BackendModuleSync.vue')
-rw-r--r--webapp/src/components/BackendModuleSync.vue28
1 files changed, 14 insertions, 14 deletions
diff --git a/webapp/src/components/BackendModuleSync.vue b/webapp/src/components/BackendModuleSync.vue
index 8c385b9..7ac76ae 100644
--- a/webapp/src/components/BackendModuleSync.vue
+++ b/webapp/src/components/BackendModuleSync.vue
@@ -46,13 +46,13 @@
prepend-icon="device_hub"
>
<template slot="no-data">
- <v-list-tile>
- <v-list-tile-content>
- <v-list-tile-title>
+ <v-list-item>
+ <v-list-item-content>
+ <v-list-item-title>
<p v-html="$t('noResultsCombobox', { search: searchGroups })"></p>
- </v-list-tile-title>
- </v-list-tile-content>
- </v-list-tile>
+ </v-list-item-title>
+ </v-list-item-content>
+ </v-list-item>
</template>
</v-combobox>
<v-autocomplete v-else
@@ -83,13 +83,13 @@
prepend-icon="computer"
>
<template slot="no-data">
- <v-list-tile>
- <v-list-tile-content>
- <v-list-tile-title>
+ <v-list-item>
+ <v-list-item-content>
+ <v-list-item-title>
No results matching "<strong>{{ searchClients }}</strong>". Press <kbd>enter</kbd> to create a new one
- </v-list-tile-title>
- </v-list-tile-content>
- </v-list-tile>
+ </v-list-item-title>
+ </v-list-item-content>
+ </v-list-item>
</template>
</v-combobox>
<v-autocomplete v-else
@@ -108,8 +108,8 @@
</v-card-text>
<v-divider></v-divider>
<v-card-actions>
- <v-flex xl10 offset-xl2 lg12 text-xs-right>
- <v-btn flat @click.native="$store.commit('backends/setSync', false)">{{ $t('cancel') }}</v-btn>
+ <v-flex xl10 offset-xl2 lg12 text-right>
+ <v-btn text @click.native="$store.commit('backends/setSync', false)">{{ $t('cancel') }}</v-btn>
<v-btn @click.native="save" class="primary" raised>{{ $t('save') }}</v-btn>
</v-flex>
</v-card-actions>