allow unselecting props

This commit is contained in:
Nitwel
2020-09-15 16:04:55 +02:00
parent b72a14df5a
commit 1a23c07e18

View File

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