refactor(lint): fix lint issues

This commit is contained in:
Corentin Thomasset 2021-05-31 12:13:52 +02:00
parent 0078af00a6
commit 6ada9a96cd
No known key found for this signature in database
GPG key ID: DBD997E935996158
2 changed files with 7 additions and 3 deletions

View file

@ -28,7 +28,7 @@
<div v-else> <div v-else>
<div class="error-wrapper"> <div class="error-wrapper">
<div class="error-description"> <div class="error-description">
{{this.error ? this.error.message : 'An error occurred'}} {{ error ? error.message : 'An error occurred' }}
</div> </div>
<v-btn color="primary" depressed @click="$router.go(-1)"> <v-btn color="primary" depressed @click="$router.go(-1)">
Back Back

View file

@ -14,7 +14,11 @@ export default {
meta: [ meta: [
{charset: 'utf-8'}, {charset: 'utf-8'},
{name: 'viewport', content: 'width=device-width, initial-scale=1'}, {name: 'viewport', content: 'width=device-width, initial-scale=1'},
{hid: 'description', name: 'description', content: 'Aggregated set of useful tools that every developer may need once in a while.'}, {
hid: 'description',
name: 'description',
content: 'Aggregated set of useful tools that every developer may need once in a while.'
},
{hid: 'keywords', name: 'keywords', content: ['tools', 'tool', 'it', 'developer', 'web', 'computing']} {hid: 'keywords', name: 'keywords', content: ['tools', 'tool', 'it', 'developer', 'web', 'computing']}
], ],
link: [{rel: 'icon', type: 'image/x-icon', href: '/favicon.ico'}] link: [{rel: 'icon', type: 'image/x-icon', href: '/favicon.ico'}]