fix: config panel "tags" turned into "select"

This commit is contained in:
axolotle 2024-04-22 16:38:26 +02:00
parent e9d9aa36cb
commit 5a805463bb

View file

@ -277,7 +277,7 @@ export function formatYunoHostArgument(arg) {
] ]
// Default type management if no one is filled // Default type management if no one is filled
if (arg.choices && arg.choices.length) { if (arg.type !== 'tags' && arg.choices && arg.choices.length) {
arg.type = 'select' arg.type = 'select'
} }
if (arg.type === undefined) { if (arg.type === undefined) {