Developer bar: Fix modal control not showing when clicking on pinned item (#3418)
Regression from #3350. Signed-off-by: Jeff James <jeff@james-online.com>pull/3422/head
parent
94f73d5c23
commit
b65d0656fc
|
|
@ -1025,7 +1025,7 @@ export default {
|
||||||
const itemEl = this.$$(evt.target).closest('.itemlist-item')
|
const itemEl = this.$$(evt.target).closest('.itemlist-item')
|
||||||
if (!itemEl.length) return
|
if (!itemEl.length) return
|
||||||
this.openedItem = item
|
this.openedItem = item
|
||||||
nextTick(() => this.$refs.itemPopover.$el.f7Popover.open(itemEl[0]))
|
nextTick(() => this.$refs.itemPopover.$el.f7Modal.open(itemEl[0]))
|
||||||
},
|
},
|
||||||
toggleThingDisabled (thing) {
|
toggleThingDisabled (thing) {
|
||||||
const enable = (thing.statusInfo.statusDetail === 'DISABLED')
|
const enable = (thing.statusInfo.statusDetail === 'DISABLED')
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue