build(deps-dev): Bump @nextcloud/eslint-config from 6.1.2 to 8.0.0

Bumps [@nextcloud/eslint-config](https://github.com/nextcloud/eslint-config) from 6.1.2 to 8.0.0.
- [Release notes](https://github.com/nextcloud/eslint-config/releases)
- [Changelog](https://github.com/nextcloud/eslint-config/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nextcloud/eslint-config/compare/v6.1.2...v8.0.0)

---
updated-dependencies:
- dependency-name: "@nextcloud/eslint-config"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2022-04-23 01:02:35 +00:00
committed by Julius Härtl
parent 8b69c90bf1
commit 4e8219c6fa
16 changed files with 1240 additions and 1043 deletions

View File

@@ -79,8 +79,7 @@
<div v-if="filterVisible" class="filter">
<h3>{{ t('deck', 'Filter by tag') }}</h3>
<div v-for="label in labelsSorted" :key="label.id" class="filter--item">
<input
:id="label.id"
<input :id="label.id"
v-model="filter.tags"
type="checkbox"
class="checkbox"
@@ -91,8 +90,7 @@
<h3>{{ t('deck', 'Filter by assigned user') }}</h3>
<div class="filter--item">
<input
id="unassigned"
<input id="unassigned"
v-model="filter.unassigned"
type="checkbox"
class="checkbox"
@@ -102,8 +100,7 @@
<label for="unassigned">{{ t('deck', 'Unassigned') }}</label>
</div>
<div v-for="user in board.users" :key="user.uid" class="filter--item">
<input
:id="user.uid"
<input :id="user.uid"
v-model="filter.users"
type="checkbox"
class="checkbox"
@@ -115,8 +112,7 @@
<h3>{{ t('deck', 'Filter by due date') }}</h3>
<div class="filter--item">
<input
id="overdue"
<input id="overdue"
v-model="filter.due"
type="radio"
class="radio"
@@ -127,8 +123,7 @@
</div>
<div class="filter--item">
<input
id="dueToday"
<input id="dueToday"
v-model="filter.due"
type="radio"
class="radio"
@@ -139,8 +134,7 @@
</div>
<div class="filter--item">
<input
id="dueWeek"
<input id="dueWeek"
v-model="filter.due"
type="radio"
class="radio"
@@ -151,8 +145,7 @@
</div>
<div class="filter--item">
<input
id="dueMonth"
<input id="dueMonth"
v-model="filter.due"
type="radio"
class="radio"
@@ -163,8 +156,7 @@
</div>
<div class="filter--item">
<input
id="noDue"
<input id="noDue"
v-model="filter.due"
type="radio"
class="radio"
@@ -181,8 +173,7 @@
</Popover>
<Actions>
<ActionButton
icon="icon-archive"
<ActionButton icon="icon-archive"
@click="toggleShowArchived">
{{ showArchived ? t('deck', 'Hide archived cards') : t('deck', 'Show archived cards') }}
</ActionButton>
@@ -267,9 +258,6 @@ export default {
return [...this.board.labels].sort((a, b) => (a.title < b.title) ? -1 : 1)
},
},
beforeDestroy() {
this.setPageTitle('')
},
watch: {
board(current, previous) {
if (current?.id !== previous?.id) {
@@ -280,6 +268,9 @@ export default {
}
},
},
beforeDestroy() {
this.setPageTitle('')
},
methods: {
beforeSetFilter(e) {
if (this.filter.due === e.target.value) {