Skip to content

Commit

Permalink
🔀 Merge pull request #1464 from CrazyWolf13/revert-1275-bug/1274-popu…
Browse files Browse the repository at this point in the history
…p-modal-fix

Revert "bug #1274 multi page popup modal fix"
Fixes #1375
  • Loading branch information
Lissy93 authored Feb 22, 2024
2 parents 1f5274b + f2641de commit 644476c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/LinkItems/Section.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@
</div>
<!-- Modal for opening in modal view -->
<IframeModal
:ref="`iframeModal`"
:name="`iframeModal`"
:ref="`iframeModal-${groupId}`"
:name="`iframeModal-${groupId}`"
@closed="$emit('itemClicked')"
/>
<!-- Edit item menu -->
Expand Down Expand Up @@ -213,7 +213,7 @@ export default {
methods: {
/* Opens the iframe modal */
triggerModal(url) {
this.$refs.iframeModal.show(url);
this.$refs[`iframeModal-${this.groupId}`].show(url);
},
/* Sorts items alphabetically using the title attribute */
sortAlphabetically(items) {
Expand Down

0 comments on commit 644476c

Please sign in to comment.