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
Jeff James 2025-11-02 11:00:24 -08:00 committed by GitHub
parent 94f73d5c23
commit b65d0656fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1025,7 +1025,7 @@ export default {
const itemEl = this.$$(evt.target).closest('.itemlist-item')
if (!itemEl.length) return
this.openedItem = item
nextTick(() => this.$refs.itemPopover.$el.f7Popover.open(itemEl[0]))
nextTick(() => this.$refs.itemPopover.$el.f7Modal.open(itemEl[0]))
},
toggleThingDisabled (thing) {
const enable = (thing.statusInfo.statusDetail === 'DISABLED')