summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/LogModuleEntry.vue
diff options
context:
space:
mode:
authorUdo Walter2020-01-19 22:18:15 +0100
committerUdo Walter2020-01-19 22:18:15 +0100
commit7c273a8bcab2da87acb3431448a53e91e360d5eb (patch)
treea83294c281ae3f33ee2a59dafe4d32b23e43fe71 /webapp/src/components/LogModuleEntry.vue
parent[configloader] remove port from dynamic menu (diff)
downloadbas-7c273a8bcab2da87acb3431448a53e91e360d5eb.tar.gz
bas-7c273a8bcab2da87acb3431448a53e91e360d5eb.tar.xz
bas-7c273a8bcab2da87acb3431448a53e91e360d5eb.zip
[webapp] upgrade/migration from vuetify 1.5 to 2.X
still TODO: switch from old grid system (v-layout/v-flex) to the new one (v-row/v-col)
Diffstat (limited to 'webapp/src/components/LogModuleEntry.vue')
-rw-r--r--webapp/src/components/LogModuleEntry.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/webapp/src/components/LogModuleEntry.vue b/webapp/src/components/LogModuleEntry.vue
index a037e79..8339b4a 100644
--- a/webapp/src/components/LogModuleEntry.vue
+++ b/webapp/src/components/LogModuleEntry.vue
@@ -30,7 +30,7 @@
<template v-if="item.client">
<v-menu v-model="menus.client" :close-on-content-click="false" offset-y content-class="log-entry-menu-conent">
<template #activator="{ on }">
- <v-btn v-on="on" outline small class="description-button" :class="{ 'error--text': item.client.deleted }">
+ <v-btn v-on="on" outlined small class="description-button" :class="{ 'error--text': item.client.deleted }">
<v-icon small class="mr-1">computer</v-icon>{{ item.client.name }}
</v-btn>
</template>
@@ -56,7 +56,7 @@
<template v-if="item.group">
<v-menu v-model="menus.group" :close-on-content-click="false" offset-y content-class="log-entry-menu-conent">
<template #activator="{ on }">
- <v-btn v-on="on" outline small class="description-button" :class="{ 'error--text': item.group.deleted }">
+ <v-btn v-on="on" outlined small class="description-button" :class="{ 'error--text': item.group.deleted }">
<v-icon small class="mr-1">category</v-icon>{{ item.group.name }}
</v-btn>
</template>
@@ -80,7 +80,7 @@
<template v-if="item.user">
<v-menu v-model="menus.user" :close-on-content-click="false" offset-y content-class="log-entry-menu-conent">
<template #activator="{ on }">
- <v-btn v-on="on" outline small class="description-button" :class="{ 'error--text': item.user.deleted }">
+ <v-btn v-on="on" outlined small class="description-button" :class="{ 'error--text': item.user.deleted }">
<v-icon small class="mr-1">person</v-icon>{{ item.user.name }}
</v-btn>
</template>