Merge pull request #1275 from ThinkSalat/bug/1274-popup-modal-fix

bug #1274 multi page popup modal fix
This commit is contained in:
Alicia Sykes
2023-11-03 21:21:40 +00:00
committed by GitHub

View File

@@ -74,8 +74,8 @@
</div> </div>
<!-- Modal for opening in modal view --> <!-- Modal for opening in modal view -->
<IframeModal <IframeModal
:ref="`iframeModal-${groupId}`" :ref="`iframeModal`"
:name="`iframeModal-${groupId}`" :name="`iframeModal`"
@closed="$emit('itemClicked')" @closed="$emit('itemClicked')"
/> />
<!-- Edit item menu --> <!-- Edit item menu -->
@@ -213,7 +213,7 @@ export default {
methods: { methods: {
/* Opens the iframe modal */ /* Opens the iframe modal */
triggerModal(url) { triggerModal(url) {
this.$refs[`iframeModal-${this.groupId}`].show(url); this.$refs.iframeModal.show(url);
}, },
/* Sorts items alphabetically using the title attribute */ /* Sorts items alphabetically using the title attribute */
sortAlphabetically(items) { sortAlphabetically(items) {