Skip to content

Commit

Permalink
Merge pull request #5023 from nextcloud-libraries/refactor/NcActionBu…
Browse files Browse the repository at this point in the history
…ttonGroup--replace-computed-with-constant

refactor(NcActionButtonGroup): replace computed of constant with constant
  • Loading branch information
Pytal committed Jan 3, 2024
2 parents 8bf8598 + a54eb47 commit 2f0f4c4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/NcActionButtonGroup/NcActionButtonGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -120,14 +120,14 @@ export default defineComponent({
},
},
methods: {
t,
setup() {
return {
labelId: `nc-action-button-group-${GenRandomId()}`,
}
},
computed: {
labelId() {
return `nc-action-button-group-${GenRandomId()}`
},
methods: {
t,
},
})
</script>
Expand Down

0 comments on commit 2f0f4c4

Please sign in to comment.