summaryrefslogtreecommitdiffstats
path: root/webapp/src/components/LogModuleEntry.vue
diff options
context:
space:
mode:
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>