aboutsummaryrefslogtreecommitdiffstats
path: root/apps/sharebymail/src
diff options
context:
space:
mode:
authorCarl Schwan <carl@carlschwan.eu>2022-05-23 14:53:56 +0200
committerCarl Schwan <carl@carlschwan.eu>2022-05-24 10:12:18 +0200
commit6d883a8572bb26c55d419afaf46f889419f325b3 (patch)
tree9b25ae5182c3b60615e70d95c09899c090385274 /apps/sharebymail/src
parent45a75c631e638ccab8934584aedad834229d10a7 (diff)
downloadnextcloud-server-6d883a8572bb26c55d419afaf46f889419f325b3.tar.gz
nextcloud-server-6d883a8572bb26c55d419afaf46f889419f325b3.zip
Fix various errors reported by eslint
And also make sure eslint doesn't try to index apps-extra that contains other repo with not necessarely the same eslint rules Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps/sharebymail/src')
-rw-r--r--apps/sharebymail/src/components/AdminSettings.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/sharebymail/src/components/AdminSettings.vue b/apps/sharebymail/src/components/AdminSettings.vue
index 29b7f051a4b..c84ded9bb2a 100644
--- a/apps/sharebymail/src/components/AdminSettings.vue
+++ b/apps/sharebymail/src/components/AdminSettings.vue
@@ -71,7 +71,7 @@ export default {
value: stringValue,
})
this.handleResponse({
- status: data.ocs?.meta?.status
+ status: data.ocs?.meta?.status,
})
} catch (e) {
this.handleResponse({
@@ -86,6 +86,6 @@ export default {
console.error(errorMessage, error)
}
},
- }
+ },
}
</script>