From 1a23c07e18a2885ff97ce4827741bfc26ed95ffa Mon Sep 17 00:00:00 2001 From: Nitwel Date: Tue, 15 Sep 2020 16:04:55 +0200 Subject: [PATCH] allow unselecting props --- app/src/interfaces/tags/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/interfaces/tags/index.ts b/app/src/interfaces/tags/index.ts index 25a3f804cc..ace439d841 100644 --- a/app/src/interfaces/tags/index.ts +++ b/app/src/interfaces/tags/index.ts @@ -68,7 +68,7 @@ export default defineInterface(({ i18n }) => ({ width: 'half', interface: 'dropdown', options: { - showDeselect: true, + allowNone: true, choices: [ { text: i18n.t('interfaces.tags.hyphen'), value: '-' }, { text: i18n.t('interfaces.tags.underscore'), value: '_' }, @@ -85,7 +85,7 @@ export default defineInterface(({ i18n }) => ({ width: 'half', interface: 'dropdown', options: { - showDeselect: true, + allowNone: true, choices: [ { text: i18n.t('interfaces.tags.uppercase'), value: 'uppercase' }, { text: i18n.t('interfaces.tags.lowercase'), value: 'lowercase' },