aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFerdinand Thiessen <opensource@fthiessen.de>2024-02-09 12:09:49 +0100
committerFerdinand Thiessen <opensource@fthiessen.de>2024-02-09 14:02:45 +0100
commitd4eb3bcac2244b72355055a237ba4dc57bb2ef35 (patch)
treeaf2de39c9a8b9edf3e260e1eff506c95dfdc634f
parentbe049ba6b312758947bae2cd31d6d32e9bfb98e4 (diff)
downloadnextcloud-server-d4eb3bcac2244b72355055a237ba4dc57bb2ef35.tar.gz
nextcloud-server-d4eb3bcac2244b72355055a237ba4dc57bb2ef35.zip
chore: Remove unused code from dashboard entrypoint
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
-rw-r--r--apps/dashboard/src/main.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/apps/dashboard/src/main.js b/apps/dashboard/src/main.js
index 53bff4a27bd..18374f823c1 100644
--- a/apps/dashboard/src/main.js
+++ b/apps/dashboard/src/main.js
@@ -33,13 +33,6 @@ Vue.directive('Tooltip', VTooltip)
Vue.prototype.t = t
-// FIXME workaround to make the sidebar work
-if (!window.OCA.Files) {
- window.OCA.Files = {}
-}
-
-Object.assign(window.OCA.Files, { App: { fileList: { filesClient: OC.Files.getClient() } } }, window.OCA.Files)
-
const Dashboard = Vue.extend(DashboardApp)
const Instance = new Dashboard({}).$mount('#app-content-vue')