Skip to content

Commit

Permalink
Fix EditDropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
dschmidt committed Jan 23, 2023
1 parent fd51437 commit cbfda25
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/web-app-files/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"@vueuse/core": "^9.8.2"
},
"peerDependencies": {
"@ownclouders/design-system": "workspace:*",
"@vueuse/core": "^9.8.2",
"filesize": "^9.0.11",
"fuse.js": "^6.5.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@
import { defineComponent } from 'vue'
import { mapGetters } from 'vuex'
import { DateTime } from 'luxon'
import uniqueId from '@ownclouders/design-system/src/utils/uniqueId'
export default defineComponent({
name: 'EditDropdown',
Expand Down Expand Up @@ -123,7 +125,7 @@ export default defineComponent({
},
editShareBtnId() {
return 'files-collaborators-edit-button-' + this._uid
return uniqueId('files-collaborators-edit-button-')
},
shareEditOptions() {
return this.$gettext('Context menu of the share')
Expand Down
2 changes: 2 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cbfda25

Please sign in to comment.