fix(lint): fix resulting linting errors

This commit is contained in:
Cameron Clark 2021-02-09 17:53:09 +00:00
parent 7a752dbba1
commit e953ea0e6d
4 changed files with 14 additions and 14 deletions

View File

@ -10,9 +10,9 @@
v-on="on"
@click="darkMode = !darkMode"
>
<v-icon>{{
darkMode ? 'mdi-weather-sunny' : 'mdi-weather-night'
}}</v-icon>
<v-icon>
{{ darkMode ? 'mdi-weather-sunny' : 'mdi-weather-night' }}
</v-icon>
</v-btn>
</template>
<span>{{

View File

@ -21,9 +21,9 @@
<v-btn color="secondary" @click="$emit('previous-step', { step: 2 })">
{{ $t('previous') }}
</v-btn>
<v-btn :loading="loading" color="primary" @click="setMetadata">{{
$t('next')
}}</v-btn>
<v-btn :loading="loading" color="primary" @click="setMetadata">
{{ $t('next') }}
</v-btn>
</div>
</template>

View File

@ -114,9 +114,9 @@
:key="director.Id"
cols="auto"
>
<v-chip small link nuxt :to="`/person/${director.Id}`">{{
director.Name
}}</v-chip>
<v-chip small link nuxt :to="`/person/${director.Id}`">
{{ director.Name }}
</v-chip>
</v-col>
</v-row>
</v-col>
@ -144,9 +144,9 @@
:key="writer.Id"
cols="auto"
>
<v-chip small link nuxt :to="`/person/${writer.Id}`">{{
writer.Name
}}</v-chip>
<v-chip small link nuxt :to="`/person/${writer.Id}`">
{{ writer.Name }}
</v-chip>
</v-col>
</v-row>
</v-col>

View File

@ -52,8 +52,8 @@
{{ $t('settings.logsAndActivity.failedGetLogs') }}
</v-card-title>
<v-card-text v-if="loadingLogsStatus.errorMessage">
{{ loadingLogsStatus.errorMessage }}</v-card-text
>
{{ loadingLogsStatus.errorMessage }}
</v-card-text>
</v-card>
</v-fade-transition>
</v-col>