mirror of https://github.com/Lissy93/dashy.git
Merge branch 'master' of https://github.com/CrazyWolf13/dashy
This commit is contained in:
commit
7d60ec2f8e
|
@ -74,8 +74,8 @@
|
||||||
</div>
|
</div>
|
||||||
<!-- Modal for opening in modal view -->
|
<!-- Modal for opening in modal view -->
|
||||||
<IframeModal
|
<IframeModal
|
||||||
:ref="`iframeModal`"
|
:ref="`iframeModal-${groupId}`"
|
||||||
:name="`iframeModal`"
|
:name="`iframeModal-${groupId}`"
|
||||||
@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.show(url);
|
this.$refs[`iframeModal-${this.groupId}`].show(url);
|
||||||
},
|
},
|
||||||
/* Sorts items alphabetically using the title attribute */
|
/* Sorts items alphabetically using the title attribute */
|
||||||
sortAlphabetically(items) {
|
sortAlphabetically(items) {
|
||||||
|
|
Loading…
Reference in New Issue