Sorting scene edit page tags alphanumerically, preventing double tags.
This commit is contained in:
@@ -237,7 +237,7 @@ const fields = computed(() => [
|
||||
{
|
||||
key: 'tags',
|
||||
type: 'tags',
|
||||
value: scene.value.tags,
|
||||
value: scene.value.tags.toSorted((tagA, tagB) => tagA.name.localeCompare(tagB.name)),
|
||||
},
|
||||
{
|
||||
key: 'movies',
|
||||
|
||||
Reference in New Issue
Block a user