diff --git a/apps/files/js/dist/personal-settings.js b/apps/files/js/dist/personal-settings.js index 828d5bf3610936c507ca2212ac0a8e85820c6171..3209d1648c4efd80fee8de9367767371e317cabd 100644 Binary files a/apps/files/js/dist/personal-settings.js and b/apps/files/js/dist/personal-settings.js differ diff --git a/apps/files/js/dist/personal-settings.js.map b/apps/files/js/dist/personal-settings.js.map index e62fdbc88251b0802d46830d8c82708d44d7f7ca..66b44260c707a2e661a634815a6f47731fcafcf7 100644 Binary files a/apps/files/js/dist/personal-settings.js.map and b/apps/files/js/dist/personal-settings.js.map differ diff --git a/apps/files/js/dist/sidebar.js b/apps/files/js/dist/sidebar.js index 5ce6e75893a002f35d5be36cd6b98a59e0895921..5e86670839bfa68df81c61a6332f4edca60da75a 100644 Binary files a/apps/files/js/dist/sidebar.js and b/apps/files/js/dist/sidebar.js differ diff --git a/apps/files/js/dist/sidebar.js.map b/apps/files/js/dist/sidebar.js.map index fecafcd9337351d700fc74e4179ad6c5ddd96343..3ddfeef5048da669b7b636b6f4be425259dbc7e0 100644 Binary files a/apps/files/js/dist/sidebar.js.map and b/apps/files/js/dist/sidebar.js.map differ diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 274c2f231f3b1ff979075f729a1bd86732e01928..17073b47033cdd7bd0ac7b2b5c51ffe06900db6d 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -3658,10 +3658,9 @@ */ registerTabView: function(tabView) { console.warn('registerTabView is deprecated! It will be removed in nextcloud 20.'); - const name = tabView.getLabel() const enabled = tabView.canDisplay || undefined - if (name) { - OCA.Files.Sidebar.registerTab(new OCA.Files.Sidebar.Tab(name, tabView, enabled, true)) + if (tabView.id) { + OCA.Files.Sidebar.registerTab(new OCA.Files.Sidebar.Tab(tabView.id, tabView, enabled, true)) } }, diff --git a/apps/files/src/components/LegacyTab.vue b/apps/files/src/components/LegacyTab.vue index 32c644ed806466d92326aac41e95fc3ac6530b1b..eaa72a99bbb92f74de8d75552b4b99501bfebe97 100644 --- a/apps/files/src/components/LegacyTab.vue +++ b/apps/files/src/components/LegacyTab.vue @@ -21,7 +21,9 @@ --> <template> - <AppSidebarTab :icon="icon" + <AppSidebarTab + :id="id" + :icon="icon" :name="name" :active-tab="activeTab" /> </template> @@ -38,7 +40,7 @@ export default { type: Object, required: true, }, - name: { + id: { type: String, required: true, }, @@ -52,9 +54,8 @@ export default { icon() { return this.component.getIcon() }, - id() { - // copied from AppSidebarTab - return this.name.toLowerCase().replace(/ /g, '-') + name() { + return this.component.getLabel() }, order() { return this.component.order diff --git a/apps/files/src/models/Tab.js b/apps/files/src/models/Tab.js index 2a045551c54dadfa20d7a78e268aa2f839c1fc3d..fd1ea9888d97cd19a3e7191ef0371fca2d8dd866 100644 --- a/apps/files/src/models/Tab.js +++ b/apps/files/src/models/Tab.js @@ -24,23 +24,23 @@ export default class Tab { #component #legacy - #name + #id #enabled /** * Create a new tab instance * - * @param {string} name the name of this tab + * @param {string} id the unique id of this tab * @param {Object} component the vue component * @param {Function} [enabled] function that returns if the tab should be shown or not * @param {boolean} [legacy] is this a legacy tab */ - constructor(name, component, enabled = () => true, legacy) { + constructor(id, component, enabled = () => true, legacy) { if (typeof enabled !== 'function') { throw new Error('The enabled argument should be a function') } - this.#name = name + this.#id = id this.#component = component this.#enabled = enabled this.#legacy = legacy === true @@ -51,8 +51,8 @@ export default class Tab { } - get name() { - return this.#name + get id() { + return this.#id } get component() { diff --git a/apps/files/src/services/Sidebar.js b/apps/files/src/services/Sidebar.js index 42243b9de82da5a161d5eabf28dc54b776e8ffe9..560db8862ec41ab0c0e14787914b9e43f118dd54 100644 --- a/apps/files/src/services/Sidebar.js +++ b/apps/files/src/services/Sidebar.js @@ -56,17 +56,17 @@ export default class Sidebar { * @returns {Boolean} */ registerTab(tab) { - const hasDuplicate = this.#state.tabs.findIndex(check => check.name === tab.name) > -1 + const hasDuplicate = this.#state.tabs.findIndex(check => check.id === tab.id) > -1 if (!hasDuplicate) { this.#state.tabs.push(tab) return true } - console.error(`An tab with the same name ${tab.name} already exists`, tab) + console.error(`An tab with the same id ${tab.id} already exists`, tab) return false } registerSecondaryView(view) { - const hasDuplicate = this.#state.views.findIndex(check => check.name === view.name) > -1 + const hasDuplicate = this.#state.views.findIndex(check => check.id === view.id) > -1 if (!hasDuplicate) { this.#state.views.push(view) return true diff --git a/apps/files/src/views/Sidebar.vue b/apps/files/src/views/Sidebar.vue index c55e1671178097002aca000867b6314a6dae06d0..00e4367e92f1840aabd9d99dd80be94690978bbe 100644 --- a/apps/files/src/views/Sidebar.vue +++ b/apps/files/src/views/Sidebar.vue @@ -62,6 +62,7 @@ <component :is="tabComponent(tab).is" v-if="canDisplay(tab)" + :id="tab.id" :key="tab.id" :component="tabComponent(tab).component" :name="tab.name" diff --git a/apps/files_sharing/js/dist/additionalScripts.js b/apps/files_sharing/js/dist/additionalScripts.js index 3266369aa0a8b95d6a9451f7cea525d9808a40e8..d2fc7942c6922d12c9a8f7ed149288f93bd59b88 100644 Binary files a/apps/files_sharing/js/dist/additionalScripts.js and b/apps/files_sharing/js/dist/additionalScripts.js differ diff --git a/apps/files_sharing/js/dist/additionalScripts.js.map b/apps/files_sharing/js/dist/additionalScripts.js.map index 8b5193f824f2a427bd796a43591414f3813e8de2..a57b5b67659182e87e53caf56f3c20f314369e35 100644 Binary files a/apps/files_sharing/js/dist/additionalScripts.js.map and b/apps/files_sharing/js/dist/additionalScripts.js.map differ diff --git a/apps/files_sharing/js/dist/files_sharing_tab.js b/apps/files_sharing/js/dist/files_sharing_tab.js index f87c9ab03b4cabeddc26b68c274826827efbc3ad..15f4bd0f761e20bc7aa54cf37d684c1f70d26765 100644 Binary files a/apps/files_sharing/js/dist/files_sharing_tab.js and b/apps/files_sharing/js/dist/files_sharing_tab.js differ diff --git a/apps/files_sharing/js/dist/files_sharing_tab.js.map b/apps/files_sharing/js/dist/files_sharing_tab.js.map index 07c49d7f45009f34272fc9ea1fa2a11feb6d8389..ef817f3fcf2215981d9fcff2b7061773f8d64c59 100644 Binary files a/apps/files_sharing/js/dist/files_sharing_tab.js.map and b/apps/files_sharing/js/dist/files_sharing_tab.js.map differ diff --git a/apps/files_sharing/js/dist/personal-settings.js b/apps/files_sharing/js/dist/personal-settings.js index 3e07f46483a6256ed02f695b013a09bd52d439f7..565c402a50f2f639aca3e775f8e8f616764d3fb0 100644 Binary files a/apps/files_sharing/js/dist/personal-settings.js and b/apps/files_sharing/js/dist/personal-settings.js differ diff --git a/apps/files_sharing/js/dist/personal-settings.js.map b/apps/files_sharing/js/dist/personal-settings.js.map index e38fa9b1cac585df1e9134da2ccc545a9ad9615f..0de2bfba33a9a55114c54140a4109b5b0da1bea7 100644 Binary files a/apps/files_sharing/js/dist/personal-settings.js.map and b/apps/files_sharing/js/dist/personal-settings.js.map differ diff --git a/apps/files_sharing/src/views/SharingTab.vue b/apps/files_sharing/src/views/SharingTab.vue index 4cd61c005c2ce16d043b91ef328bce6d911718e1..2e68377b0b1704d7e2e50bd7c678edf27282009d 100644 --- a/apps/files_sharing/src/views/SharingTab.vue +++ b/apps/files_sharing/src/views/SharingTab.vue @@ -21,7 +21,10 @@ --> <template> - <Tab :icon="icon" :name="name" :class="{ 'icon-loading': loading }"> + <Tab :id="id" + :icon="icon" + :name="name" + :class="{ 'icon-loading': loading }"> <!-- error message --> <div v-if="error" class="emptycontent"> <div class="icon icon-error" /> @@ -151,7 +154,7 @@ export default { * @returns {string} */ id() { - return this.name.toLowerCase().replace(/ /g, '-') + return 'sharing' }, /** diff --git a/apps/settings/js/vue-0.js b/apps/settings/js/vue-0.js index 92e722c64dee50d6e1df4e0cb636633fa25c3b61..967598901d9a05f3d7da2f0c7da1bc3c438ed37f 100644 Binary files a/apps/settings/js/vue-0.js and b/apps/settings/js/vue-0.js differ diff --git a/apps/settings/js/vue-0.js.map b/apps/settings/js/vue-0.js.map index 2718f978e1239b5084910d7cd27cbcfbbf1226f1..0c3904278ab959d6527ea14079edc48df03a1859 100644 Binary files a/apps/settings/js/vue-0.js.map and b/apps/settings/js/vue-0.js.map differ diff --git a/apps/settings/js/vue-1.js b/apps/settings/js/vue-1.js deleted file mode 100644 index 557e4e646c472b4fc74b7937d633c2fb1867e4e2..0000000000000000000000000000000000000000 Binary files a/apps/settings/js/vue-1.js and /dev/null differ diff --git a/apps/settings/js/vue-1.js.map b/apps/settings/js/vue-1.js.map deleted file mode 100644 index c8f3b608d219f62d3a1e989d4e6a4f2f63ecd542..0000000000000000000000000000000000000000 Binary files a/apps/settings/js/vue-1.js.map and /dev/null differ diff --git a/apps/settings/js/vue-2.js b/apps/settings/js/vue-2.js deleted file mode 100644 index a69287d398aed29ab51127e20f845d81b631080b..0000000000000000000000000000000000000000 Binary files a/apps/settings/js/vue-2.js and /dev/null differ diff --git a/apps/settings/js/vue-2.js.map b/apps/settings/js/vue-2.js.map deleted file mode 100644 index 806588727d6759e0b9a117df8b4a3f0430cf89fd..0000000000000000000000000000000000000000 Binary files a/apps/settings/js/vue-2.js.map and /dev/null differ diff --git a/apps/settings/js/vue-3.js b/apps/settings/js/vue-3.js deleted file mode 100644 index 238a88f5bf10b0e0fd1d7a80539ab4d764ca22e3..0000000000000000000000000000000000000000 Binary files a/apps/settings/js/vue-3.js and /dev/null differ diff --git a/apps/settings/js/vue-3.js.map b/apps/settings/js/vue-3.js.map deleted file mode 100644 index fb6e1e7d149d062c297a92544e3a7426004a1ba1..0000000000000000000000000000000000000000 Binary files a/apps/settings/js/vue-3.js.map and /dev/null differ diff --git a/apps/settings/js/vue-4.js b/apps/settings/js/vue-4.js index b83abe52b41ea92d6de7d44d62d322d0e0a06962..806b51c7c972586badcfccd498a1226d5e1e9eaf 100644 Binary files a/apps/settings/js/vue-4.js and b/apps/settings/js/vue-4.js differ diff --git a/apps/settings/js/vue-4.js.map b/apps/settings/js/vue-4.js.map index 9fb162cd342ad3fc2451ad26877fa6026b733b74..2ffc35950991c9e7c8fd07b6404410aa8a757fc1 100644 Binary files a/apps/settings/js/vue-4.js.map and b/apps/settings/js/vue-4.js.map differ diff --git a/apps/settings/js/vue-7.js b/apps/settings/js/vue-7.js index a23cdf8dca9d9f6cf10e51d67062551ca013f95e..e133d7ce2491a3f01ac1738a8540bf20789da461 100644 Binary files a/apps/settings/js/vue-7.js and b/apps/settings/js/vue-7.js differ diff --git a/apps/settings/js/vue-7.js.map b/apps/settings/js/vue-7.js.map index b4b8bc3662f63df8b37af8707452c4b56600c6a5..96955b930e0e2f738a16c14200fcfe45729e9e09 100644 Binary files a/apps/settings/js/vue-7.js.map and b/apps/settings/js/vue-7.js.map differ diff --git a/apps/settings/js/vue-settings-admin-security.js b/apps/settings/js/vue-settings-admin-security.js index 972c7d15908d882ae631ee85e9c527f8f4060b03..f29545eaccf64872dea2bd6772c5366df3f6ab0d 100644 Binary files a/apps/settings/js/vue-settings-admin-security.js and b/apps/settings/js/vue-settings-admin-security.js differ diff --git a/apps/settings/js/vue-settings-admin-security.js.map b/apps/settings/js/vue-settings-admin-security.js.map index 52576c07a389206080df4e0ce8490d228eeac431..926eff7fc878466f866ac3158d5ba4b0771bee50 100644 Binary files a/apps/settings/js/vue-settings-admin-security.js.map and b/apps/settings/js/vue-settings-admin-security.js.map differ diff --git a/apps/settings/js/vue-settings-apps-users-management.js b/apps/settings/js/vue-settings-apps-users-management.js index 1ded0b297a61dce4885a46f420225d54ccb36943..740801ae841f66270c4387a29a38e5714b2acbba 100644 Binary files a/apps/settings/js/vue-settings-apps-users-management.js and b/apps/settings/js/vue-settings-apps-users-management.js differ diff --git a/apps/settings/js/vue-settings-apps-users-management.js.map b/apps/settings/js/vue-settings-apps-users-management.js.map index f1607e9ad1826ae582674f67f8ca47d54ab1e672..5e5b2f8447c8b558948d01cadde920fffcd69e05 100644 Binary files a/apps/settings/js/vue-settings-apps-users-management.js.map and b/apps/settings/js/vue-settings-apps-users-management.js.map differ diff --git a/apps/settings/js/vue-settings-personal-security.js b/apps/settings/js/vue-settings-personal-security.js index bbb09cd77c1b69c5fe980967d5fe1aee16d26f3f..edf2783967a9734f242fd583ad1040462f6312d0 100644 Binary files a/apps/settings/js/vue-settings-personal-security.js and b/apps/settings/js/vue-settings-personal-security.js differ diff --git a/apps/settings/js/vue-settings-personal-security.js.map b/apps/settings/js/vue-settings-personal-security.js.map index ce00b1fedbc018cdf27f1a81d569951105d57006..43604711db48cc6fee7bf42c6abe88db40ab3281 100644 Binary files a/apps/settings/js/vue-settings-personal-security.js.map and b/apps/settings/js/vue-settings-personal-security.js.map differ diff --git a/apps/updatenotification/js/updatenotification.js b/apps/updatenotification/js/updatenotification.js index 723e3cc366812f1aff5f0c4e84f2e3b73581609d..4f8387604af2aae7b05307105821b5f4c6ac0afe 100644 Binary files a/apps/updatenotification/js/updatenotification.js and b/apps/updatenotification/js/updatenotification.js differ diff --git a/apps/updatenotification/js/updatenotification.js.map b/apps/updatenotification/js/updatenotification.js.map index 314928fb6b26c92c7e03946f6335c802dbfb55c2..672178ad68d4818f663885a65e5061482680b230 100644 Binary files a/apps/updatenotification/js/updatenotification.js.map and b/apps/updatenotification/js/updatenotification.js.map differ diff --git a/apps/workflowengine/js/workflowengine.js b/apps/workflowengine/js/workflowengine.js index 88344418a1d60e04d457c9b6f5cef1106f9b5438..30f499972443b02824581ff48b57b30005496d18 100644 Binary files a/apps/workflowengine/js/workflowengine.js and b/apps/workflowengine/js/workflowengine.js differ diff --git a/apps/workflowengine/js/workflowengine.js.map b/apps/workflowengine/js/workflowengine.js.map index 54d9656a1d9744db35a63fe428a168a2e1dc4465..7e258c6765f99b7c7555d241d6e342eae3b2fbc7 100644 Binary files a/apps/workflowengine/js/workflowengine.js.map and b/apps/workflowengine/js/workflowengine.js.map differ diff --git a/package-lock.json b/package-lock.json index 806b9029dd38bf0d3b1aa60f5cbc23251adef458..aaee67e0f39e5cbc0a1db7697598af663a5b9011 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3149,9 +3149,9 @@ } }, "@nextcloud/vue": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/@nextcloud/vue/-/vue-1.2.7.tgz", - "integrity": "sha512-hw6nqP6CpkFdj+o8wwVllSmC2h4f+oE+bSoiynlzHFt+TOxgrxh/wABkafEW7DmSCfTo4cOze9aVyoRU/zu8VA==", + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/@nextcloud/vue/-/vue-1.3.0.tgz", + "integrity": "sha512-zqSLvrp+pX012qNBbJBuE/Z9MPv/A6fovsro2nkGCoO0ppBD+W9gmjzLa6D9jRHN24+BmDWB3lNGd9T/G0q3Fw==", "requires": { "@nextcloud/axios": "^1.1.0", "@nextcloud/router": "^1.0.0", @@ -3997,6 +3997,15 @@ "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, "block-stream": { "version": "0.0.9", "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz", @@ -5755,6 +5764,12 @@ } } }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "optional": true + }, "fill-range": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", @@ -5937,13 +5952,14 @@ "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, "fsevents": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.9.tgz", - "integrity": "sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw==", + "version": "1.2.11", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.11.tgz", + "integrity": "sha512-+ux3lx6peh0BpvY0JebGyZoiR4D+oYzdPZMKJwkZ+sFkNJzpL7tXc/wehS49gUAxg3tmMHPHZkA8JU2rhhgDHw==", "optional": true, "requires": { + "bindings": "^1.5.0", "nan": "^2.12.1", - "node-pre-gyp": "^0.12.0" + "node-pre-gyp": "*" }, "dependencies": { "abbrev": { @@ -5985,7 +6001,7 @@ } }, "chownr": { - "version": "1.1.1", + "version": "1.1.3", "bundled": true, "optional": true }, @@ -6010,7 +6026,7 @@ "optional": true }, "debug": { - "version": "4.1.1", + "version": "3.2.6", "bundled": true, "optional": true, "requires": { @@ -6033,11 +6049,11 @@ "optional": true }, "fs-minipass": { - "version": "1.2.5", + "version": "1.2.7", "bundled": true, "optional": true, "requires": { - "minipass": "^2.2.1" + "minipass": "^2.6.0" } }, "fs.realpath": { @@ -6061,7 +6077,7 @@ } }, "glob": { - "version": "7.1.3", + "version": "7.1.6", "bundled": true, "optional": true, "requires": { @@ -6087,7 +6103,7 @@ } }, "ignore-walk": { - "version": "3.0.1", + "version": "3.0.3", "bundled": true, "optional": true, "requires": { @@ -6104,7 +6120,7 @@ } }, "inherits": { - "version": "2.0.3", + "version": "2.0.4", "bundled": true, "optional": true }, @@ -6140,7 +6156,7 @@ "optional": true }, "minipass": { - "version": "2.3.5", + "version": "2.9.0", "bundled": true, "optional": true, "requires": { @@ -6149,11 +6165,11 @@ } }, "minizlib": { - "version": "1.2.1", + "version": "1.3.3", "bundled": true, "optional": true, "requires": { - "minipass": "^2.2.1" + "minipass": "^2.9.0" } }, "mkdirp": { @@ -6165,22 +6181,22 @@ } }, "ms": { - "version": "2.1.1", + "version": "2.1.2", "bundled": true, "optional": true }, "needle": { - "version": "2.3.0", + "version": "2.4.0", "bundled": true, "optional": true, "requires": { - "debug": "^4.1.0", + "debug": "^3.2.6", "iconv-lite": "^0.4.4", "sax": "^1.2.4" } }, "node-pre-gyp": { - "version": "0.12.0", + "version": "0.14.0", "bundled": true, "optional": true, "requires": { @@ -6193,7 +6209,7 @@ "rc": "^1.2.7", "rimraf": "^2.6.1", "semver": "^5.3.0", - "tar": "^4" + "tar": "^4.4.2" } }, "nopt": { @@ -6206,12 +6222,20 @@ } }, "npm-bundled": { - "version": "1.0.6", + "version": "1.1.1", + "bundled": true, + "optional": true, + "requires": { + "npm-normalize-package-bin": "^1.0.1" + } + }, + "npm-normalize-package-bin": { + "version": "1.0.1", "bundled": true, "optional": true }, "npm-packlist": { - "version": "1.4.1", + "version": "1.4.7", "bundled": true, "optional": true, "requires": { @@ -6273,7 +6297,7 @@ "optional": true }, "process-nextick-args": { - "version": "2.0.0", + "version": "2.0.1", "bundled": true, "optional": true }, @@ -6310,7 +6334,7 @@ } }, "rimraf": { - "version": "2.6.3", + "version": "2.7.1", "bundled": true, "optional": true, "requires": { @@ -6333,7 +6357,7 @@ "optional": true }, "semver": { - "version": "5.7.0", + "version": "5.7.1", "bundled": true, "optional": true }, @@ -6379,17 +6403,17 @@ "optional": true }, "tar": { - "version": "4.4.8", + "version": "4.4.13", "bundled": true, "optional": true, "requires": { "chownr": "^1.1.1", "fs-minipass": "^1.2.5", - "minipass": "^2.3.4", - "minizlib": "^1.1.1", + "minipass": "^2.8.6", + "minizlib": "^1.2.1", "mkdirp": "^0.5.0", "safe-buffer": "^5.1.2", - "yallist": "^3.0.2" + "yallist": "^3.0.3" } }, "util-deprecate": { @@ -6411,7 +6435,7 @@ "optional": true }, "yallist": { - "version": "3.0.3", + "version": "3.1.1", "bundled": true, "optional": true } diff --git a/package.json b/package.json index bf8aac3cbce85f9dfa647ffe015defa72986d610..2c88693b9864d5149b7857ca8143a8870986c2fc 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ "@nextcloud/logger": "^1.1.1", "@nextcloud/paths": "^1.1.0", "@nextcloud/router": "^1.0.0", - "@nextcloud/vue": "^1.2.7", + "@nextcloud/vue": "^1.3.0", "autosize": "^4.0.2", "backbone": "^1.4.0", "blueimp-md5": "^2.12.0",