Fixes "new term modal" not opening.
This commit is contained in:
parent
4cfc213229
commit
dbcd9a94a6
|
@ -48,7 +48,7 @@
|
||||||
<template v-if="allowNewFromOptions && itemMetadatum.item">
|
<template v-if="allowNewFromOptions && itemMetadatum.item">
|
||||||
<!-- Term creation modal, used on admin for a complete term creation -->
|
<!-- Term creation modal, used on admin for a complete term creation -->
|
||||||
<b-modal
|
<b-modal
|
||||||
v-model:active="isTermCreationModalOpen"
|
:model-value="isTermCreationModalOpen"
|
||||||
:width="768"
|
:width="768"
|
||||||
trap-focus
|
trap-focus
|
||||||
aria-role="dialog"
|
aria-role="dialog"
|
||||||
|
@ -269,6 +269,7 @@
|
||||||
this.isTermCreationPanelOpen = true;
|
this.isTermCreationPanelOpen = true;
|
||||||
else
|
else
|
||||||
this.isTermCreationModalOpen = true;
|
this.isTermCreationModalOpen = true;
|
||||||
|
console.log(this.isTermCreationModalOpen)
|
||||||
},
|
},
|
||||||
onMobileSpecialFocus() {
|
onMobileSpecialFocus() {
|
||||||
this.$emit('mobile-special-focus');
|
this.$emit('mobile-special-focus');
|
||||||
|
|
Loading…
Reference in New Issue