mirror of
https://github.com/gotson/komga.git
synced 2026-04-21 14:30:50 +02:00
fix warning
This commit is contained in:
parent
fb6fcbe2fa
commit
4c34bc92a5
1 changed files with 2 additions and 2 deletions
|
|
@ -253,8 +253,8 @@ const hideMenu = computed(() => selected || isPreSelect.value || isTouchPrimary.
|
|||
// for the quick action button to work as a dialog activator
|
||||
// when the dialog is shown, the overlay disappears, along with the activator
|
||||
// we use an underlay with the same positioning, but a negative z-index, and we map the `id` to the underlay
|
||||
const quickActionPropsOverlay = reactiveOmit(quickActionProps, 'id')
|
||||
const quickActionPropsUnderlay = reactivePick(quickActionProps, 'id')
|
||||
const quickActionPropsOverlay = reactiveOmit(reactive(quickActionProps), 'id')
|
||||
const quickActionPropsUnderlay = reactivePick(reactive(quickActionProps), 'id')
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
|
|
|
|||
Loading…
Reference in a new issue