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' },