This commit is contained in:
2018-11-26 18:20:41 +00:00
parent dc4a04472b
commit dda3a44284
2 changed files with 6 additions and 7 deletions

View File

@@ -22,12 +22,9 @@
</v-toolbar-title> </v-toolbar-title>
<v-text-field flat solo-inverted hide-details prepend-inner-icon="fa-search" label="Search"></v-text-field> <v-text-field flat solo-inverted hide-details prepend-inner-icon="fa-search" label="Search"></v-text-field>
<v-spacer></v-spacer> <v-spacer></v-spacer>
<v-tooltip bottom> <v-btn icon v-bind:href="helpUrl" target="blank;">
<v-btn icon v-bind:href="helpUrl" target="blank;"> <v-icon>fa-question-circle</v-icon>
<v-icon>fa-question-circle</v-icon> </v-btn>
</v-btn>
<span>Tooltip</span>
</v-tooltip>
</v-toolbar> </v-toolbar>
<v-content> <v-content>
<v-container fluid fill-height> <v-container fluid fill-height>

View File

@@ -42,7 +42,9 @@ export function processLogin(response) {
} }
export function processLogout() { export function processLogout() {
store.commit("logItem", "auth::processLogout -> User logged out"); if (store.state.authenticated) {
store.commit("logItem", "auth::processLogout -> User logged out");
}
store.commit("logout"); store.commit("logout");
} }