Add dropdown

This commit is contained in:
HaveAGitGat 2021-12-12 17:23:05 +00:00
parent 034250f74a
commit 1c032958c9

View file

@ -34,7 +34,11 @@ const details = () => ({
type: 'boolean', type: 'boolean',
defaultValue: false, defaultValue: false,
inputUI: { inputUI: {
type: 'text', type: 'dropdown',
options: [
'false',
'true',
]
}, },
tooltip: `Specify if audio tracks that contain commentary/description should be removed. tooltip: `Specify if audio tracks that contain commentary/description should be removed.
\\nExample:\\n \\nExample:\\n
@ -65,7 +69,11 @@ const details = () => ({
type: 'boolean', type: 'boolean',
defaultValue: false, defaultValue: false,
inputUI: { inputUI: {
type: 'text', type: 'dropdown',
options: [
'false',
'true',
]
}, },
tooltip: `Specify audio tracks with no title to be tagged with the number of channels they contain. tooltip: `Specify audio tracks with no title to be tagged with the number of channels they contain.
\\nDo NOT use this with mp4, as mp4 does not support title tags. \\nDo NOT use this with mp4, as mp4 does not support title tags.