fix: default tag_language to empty string (#230)

fixes this option defaulting to eng when user intends to disable
make-only-subtitle-default
William Brockhus 4 years ago committed by GitHub
parent 9e04b43e75
commit c2cf207a30
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

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

Loading…
Cancel
Save