diff options
Diffstat (limited to 'apps/files/src/main.ts')
-rw-r--r-- | apps/files/src/main.ts | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/apps/files/src/main.ts b/apps/files/src/main.ts index b4755df8eed..4b8aca9efd4 100644 --- a/apps/files/src/main.ts +++ b/apps/files/src/main.ts @@ -4,7 +4,6 @@ */ import type { Pinia } from 'pinia' import { getCSPNonce } from '@nextcloud/auth' -import { getNavigation } from '@nextcloud/files' import { PiniaVuePlugin } from 'pinia' import Vue from 'vue' @@ -44,11 +43,6 @@ Vue.use(PiniaVuePlugin) // Init HotKeys AFTER pinia is set up registerHotkeys() -// Init Navigation Service -// This only works with Vue 2 - with Vue 3 this will not modify the source but return just a observer -const Navigation = Vue.observable(getNavigation()) -Vue.prototype.$navigation = Navigation - // Init Files App Settings Service const Settings = new SettingsService() Object.assign(window.OCA.Files, { Settings }) |