Fix saves manager displaying "default body" while closing
This commit is contained in:
parent
5e58da0de3
commit
0f498ab2f7
1 changed files with 2 additions and 2 deletions
|
@ -3,11 +3,11 @@
|
|||
<template v-slot:header>
|
||||
<h2>Saves Manager</h2>
|
||||
</template>
|
||||
<template v-slot:body>
|
||||
<template #body="{ shown }">
|
||||
<Draggable
|
||||
:list="settings.saves"
|
||||
handle=".handle"
|
||||
v-if="unref(modal?.isOpen)"
|
||||
v-if="shown"
|
||||
:itemKey="(save: string) => save"
|
||||
>
|
||||
<template #item="{ element }">
|
||||
|
|
Loading…
Reference in a new issue