fix: default tag_language to empty string (#230)

fixes this option defaulting to eng when user intends to disable
This commit is contained in:
William Brockhus 2021-12-29 11:26:25 +11:00 committed by GitHub
parent 9e04b43e75
commit c2cf207a30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -50,7 +50,7 @@ const details = () => ({
{
name: 'tag_language',
type: 'string',
defaultValue: 'eng',
defaultValue: '',
inputUI: {
type: 'text',
},

View file

@ -45,7 +45,7 @@ const details = () => ({
{
name: 'tag_language',
type: 'string',
defaultValue: 'eng',
defaultValue: '',
inputUI: {
type: 'text',
},