diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-03-25 10:38:16 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2020-03-25 11:53:59 +0100 |
commit | 6af1ed8cb32cff0ba384db33ba19540b0ac8ba6a (patch) | |
tree | efa3660dd0bb9ef3d3260201306d406688eeb1ce /apps/files/src | |
parent | ba14c41a1ca39624040282ab9082fff7aa09bff6 (diff) | |
download | nextcloud-server-6af1ed8cb32cff0ba384db33ba19540b0ac8ba6a.tar.gz nextcloud-server-6af1ed8cb32cff0ba384db33ba19540b0ac8ba6a.zip |
Update eslint and switch to @nextcloud packages
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/files/src')
-rw-r--r-- | apps/files/src/components/Setting.vue | 4 | ||||
-rw-r--r-- | apps/files/src/views/Settings.vue | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/apps/files/src/components/Setting.vue b/apps/files/src/components/Setting.vue index acd7e8d1bce..b50a938cb52 100644 --- a/apps/files/src/components/Setting.vue +++ b/apps/files/src/components/Setting.vue @@ -30,11 +30,11 @@ export default { el: { type: Function, required: true, - } + }, }, mounted() { this.$el.appendChild(this.el()) - } + }, } </script> <style> diff --git a/apps/files/src/views/Settings.vue b/apps/files/src/views/Settings.vue index 793ad293ad1..5d2aff2f49a 100644 --- a/apps/files/src/views/Settings.vue +++ b/apps/files/src/views/Settings.vue @@ -22,7 +22,7 @@ <template> <div id="files-app-extra-settings"> <template v-for="setting in settings"> - <Setting :el="setting.el" :key="setting.name" /> + <Setting :key="setting.name" :el="setting.el" /> </template> </div> </template> @@ -33,13 +33,13 @@ import Setting from '../components/Setting' export default { name: 'Settings', components: { - Setting + Setting, }, data() { return { - settings: OCA.Files.Settings.settings + settings: OCA.Files.Settings.settings, } - } + }, } </script> |