mirror of
https://github.com/gotson/komga.git
synced 2025-12-15 04:53:44 +01:00
fix drawer open usage for hmr
This commit is contained in:
parent
519666aca0
commit
d501d77e2d
1 changed files with 3 additions and 6 deletions
|
|
@ -1,9 +1,6 @@
|
|||
<template>
|
||||
<v-list-group
|
||||
ref="group"
|
||||
value="Server"
|
||||
>
|
||||
<template #activator="{ props }">
|
||||
<v-list-group value="Server">
|
||||
<template #activator="{ props, isOpen }">
|
||||
<v-list-item
|
||||
v-bind="props"
|
||||
:title="
|
||||
|
|
@ -16,7 +13,7 @@
|
|||
>
|
||||
<template #prepend>
|
||||
<v-badge
|
||||
:model-value="unreadCount > 0 && !($refs as any).group.isOpen"
|
||||
:model-value="unreadCount > 0 && !isOpen"
|
||||
dot
|
||||
floating
|
||||
color="info"
|
||||
|
|
|
|||
Loading…
Reference in a new issue