fix: lint errors
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
kolaente 2021-11-03 18:04:48 +01:00
parent 0493b7cdf1
commit d898ec0c49
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
3 changed files with 4 additions and 6 deletions

View File

@ -108,7 +108,8 @@
"semi": [
"error",
"never"
]
],
"vue/multi-word-component-names": 0
},
"parser": "vue-eslint-parser",
"parserOptions": {

View File

@ -10,7 +10,6 @@
}"
:to="{ name: 'list.index', params: { listId: list.id} }"
class="list-card"
tag="span"
v-if="list !== null && (showArchived ? true : !list.isArchived)"
>
<div class="is-archived-container">

View File

@ -8,15 +8,13 @@
<router-link
:disabled="currentPage === 1 || null"
:to="getRouteForPagination(currentPage - 1)"
class="pagination-previous"
tag="button">
class="pagination-previous">
{{ $t('misc.previous') }}
</router-link>
<router-link
:disabled="currentPage === totalPages || null"
:to="getRouteForPagination(currentPage + 1)"
class="pagination-next"
tag="button">
class="pagination-next">
{{ $t('misc.next') }}
</router-link>
<ul class="pagination-list">