diff options
Diffstat (limited to 'core/src/mixins/Nextcloud.js')
-rw-r--r-- | core/src/mixins/Nextcloud.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/mixins/Nextcloud.js b/core/src/mixins/Nextcloud.js index 3ca755b3052..53c30b297ce 100644 --- a/core/src/mixins/Nextcloud.js +++ b/core/src/mixins/Nextcloud.js @@ -25,11 +25,11 @@ import OC from '../OC/index' export default { data() { return { - OC, + OC } }, methods: { t: L10n.translate.bind(L10n), - n: L10n.translatePlural.bind(L10n), - }, + n: L10n.translatePlural.bind(L10n) + } } |