Skip to content

Commit 6f1a4c9

Browse files
authored
Merge pull request #5196 from nextcloud-libraries/fix/nc-actions--re-rendering-slots-issue
revert: fix(NcActions): use new slots api
2 parents 83d844d + 08cc694 commit 6f1a4c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mixins/actionGlobal.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ export default {
4040

4141
methods: {
4242
getText() {
43-
return this.$scopedSlots.default ? this.$scopedSlots.default()?.[0].text.trim() : ''
43+
return this.$slots.default ? this.$slots.default[0].text.trim() : ''
4444
},
4545
},
4646
}

0 commit comments

Comments
 (0)