Skip to content
This repository has been archived by the owner on Aug 9, 2021. It is now read-only.

Commit

Permalink
- Linting/formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
hardiesoft committed Jul 20, 2021
1 parent 4bb7fc9 commit 178a095
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/components/Devices/DeviceDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@
:recordings-query="recordingQuery()"
/>
</b-tab>
<b-tab title="Visits" lazy v-if="!deviceType || deviceType === 'VideoRecorder'">
<b-tab
title="Visits"
lazy
v-if="!deviceType || deviceType === 'VideoRecorder'"
>
<template #title>
<TabTemplate
title="Visits"
Expand Down Expand Up @@ -146,7 +150,7 @@ export default {
get() {
return Math.max(0, this.tabNames.indexOf(this.currentTabName));
},
set(tabIndex) {;
set(tabIndex) {
const nextTabName = this.tabNames[tabIndex];
if (nextTabName !== this.currentTabName) {
this.$router.push({
Expand Down

0 comments on commit 178a095

Please sign in to comment.