mirror of
https://github.com/owntone/owntone-server.git
synced 2025-10-29 07:45:04 -04:00
[web] Avoid list being modified when not in editing mode #1915
This commit is contained in:
parent
efbf950068
commit
5b013115ba
@ -47,7 +47,12 @@
|
||||
/>
|
||||
</template>
|
||||
<template #content>
|
||||
<draggable v-model="items" item-key="id" @end="moveItem">
|
||||
<draggable
|
||||
v-model="items"
|
||||
:disabled="!editing"
|
||||
item-key="id"
|
||||
@end="moveItem"
|
||||
>
|
||||
<template #item="{ element, index }">
|
||||
<list-item-queue-item
|
||||
:item="element"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user