From 5a805463bb461ccc4546a3be4caa809fdff22ba5 Mon Sep 17 00:00:00 2001 From: axolotle Date: Mon, 22 Apr 2024 16:38:26 +0200 Subject: [PATCH] fix: config panel "tags" turned into "select" --- app/src/helpers/yunohostArguments.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/helpers/yunohostArguments.js b/app/src/helpers/yunohostArguments.js index 641ae376..7322ccb9 100644 --- a/app/src/helpers/yunohostArguments.js +++ b/app/src/helpers/yunohostArguments.js @@ -277,7 +277,7 @@ export function formatYunoHostArgument(arg) { ] // 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' } if (arg.type === undefined) {