We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 98d0545 + 26cb1ce commit 64aca7dCopy full SHA for 64aca7d
src/components/NcAppNavigationItem/NcAppNavigationItem.vue
@@ -627,6 +627,7 @@ export default {
627
628
data() {
629
return {
630
+ actionsBoundariesElement: undefined,
631
editingValue: '',
632
opened: this.open, // Collapsible state
633
editingActive: false,
@@ -660,9 +661,6 @@ export default {
660
661
undoButtonAriaLabel() {
662
return t('Undo changes')
663
},
- actionsBoundariesElement() {
664
- return document.querySelector('#content-vue') || undefined
665
- },
666
667
668
watch: {
@@ -671,6 +669,10 @@ export default {
671
669
672
670
673
+ mounted() {
+ this.actionsBoundariesElement = document.querySelector('#content-vue') || undefined
674
+ },
675
+
676
methods: {
677
// sync opened menu state with prop
678
onMenuToggle(state) {
0 commit comments