diff options
author | Julius Härtl <jus@bitgrid.net> | 2020-06-15 08:18:50 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2020-08-05 17:01:27 +0200 |
commit | 429049c809226f3750647a19a4cb48e0d3d4ea75 (patch) | |
tree | 3a66ed71df4d417dacfb888ce831e5db7d98267d /apps/dashboard/src/main.js | |
parent | 55473dd2eb042078b7fc5aef37e7b7fb614554fa (diff) | |
download | nextcloud-server-429049c809226f3750647a19a4cb48e0d3d4ea75.tar.gz nextcloud-server-429049c809226f3750647a19a4cb48e0d3d4ea75.zip |
Allow userdefined order and start with drag and drop resorting
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/dashboard/src/main.js')
-rw-r--r-- | apps/dashboard/src/main.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/dashboard/src/main.js b/apps/dashboard/src/main.js index 998f538356b..e1c2c59a10f 100644 --- a/apps/dashboard/src/main.js +++ b/apps/dashboard/src/main.js @@ -1,5 +1,7 @@ import Vue from 'vue' import App from './App.vue' +import { translate as t } from '@nextcloud/l10n' +Vue.prototype.t = t const Dashboard = Vue.extend(App) const Instance = new Dashboard({}).$mount('#app') |