summaryrefslogtreecommitdiffstats
path: root/src/views
diff options
context:
space:
mode:
authorRichard Steinmetz <richard@steinmetz.cloud>2023-08-21 10:08:10 +0200
committerRichard Steinmetz <richard@steinmetz.cloud>2023-08-21 10:22:13 +0200
commit2bfec2eb9708f25af5839923b03e85d0e8757347 (patch)
tree0be377cf94f48de4110455935a1107fea1f9bd7f /src/views
parent07a06fb40103718e22891d2c6535dad2dda61b0c (diff)
chore(eslint): fix all linter issues
Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
Diffstat (limited to 'src/views')
-rw-r--r--src/views/Contacts.vue3
-rw-r--r--src/views/Processing/AddToGroupView.vue6
-rw-r--r--src/views/Processing/ImportView.vue6
3 files changed, 8 insertions, 7 deletions
diff --git a/src/views/Contacts.vue b/src/views/Contacts.vue
index 64c2d902..53f134e7 100644
--- a/src/views/Contacts.vue
+++ b/src/views/Contacts.vue
@@ -234,6 +234,7 @@ export default {
mounted() {
// Register search
+ // eslint-disable-next-line @nextcloud/no-removed-apis
this.search = new OCA.Search(this.search, this.resetSearch)
if (this.isCirclesEnabled) {
@@ -351,7 +352,7 @@ export default {
Promise.all(this.addressbooks
.map(addressbook => {
return this.$store.dispatch('getContactsFromAddressBook', { addressbook })
- })
+ }),
).then(results => {
this.loadingContacts = false
if (!this.isMobile && !this.selectedChart) {
diff --git a/src/views/Processing/AddToGroupView.vue b/src/views/Processing/AddToGroupView.vue
index 518d907f..ad21e7d9 100644
--- a/src/views/Processing/AddToGroupView.vue
+++ b/src/views/Processing/AddToGroupView.vue
@@ -76,7 +76,7 @@ export default {
'{success} contact added to {name}',
'{success} contacts added to {name}',
this.success,
- { success: this.success, name: this.name }
+ { success: this.success, name: this.name },
)
},
@@ -85,7 +85,7 @@ export default {
'Adding {success} contact to {name}',
'Adding {success} contacts to {name}',
this.success,
- { success: this.success, name: this.name }
+ { success: this.success, name: this.name },
)
},
@@ -94,7 +94,7 @@ export default {
'{count} error',
'{count} errors',
this.failed,
- { count: this.failed }
+ { count: this.failed },
)
},
},
diff --git a/src/views/Processing/ImportView.vue b/src/views/Processing/ImportView.vue
index bbea7be9..989103c0 100644
--- a/src/views/Processing/ImportView.vue
+++ b/src/views/Processing/ImportView.vue
@@ -74,7 +74,7 @@ export default {
this.total,
{
addressbook: this.addressbook,
- }
+ },
)
},
@@ -85,7 +85,7 @@ export default {
this.total,
{
addressbook: this.addressbook,
- }
+ },
)
},
@@ -94,7 +94,7 @@ export default {
'{count} error',
'{count} errors',
this.failed,
- { count: this.failed }
+ { count: this.failed },
)
},
},