mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-07 12:53:00 -05:00
[web] Avoid list being modified when not in editing mode #1915
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user