Clarify switch input type

This commit is contained in:
HaveAGitGat 2023-11-30 05:58:24 +00:00
parent 1455d65428
commit 0cb9e75a53
10 changed files with 17 additions and 76 deletions

View file

@ -27,11 +27,7 @@ const details = (): IpluginDetails => ({
type: 'boolean',
defaultValue: 'false',
inputUI: {
type: 'dropdown',
options: [
'false',
'true',
],
type: 'switch',
},
tooltip: 'Will check if input file and cache are readable and writable',
},
@ -41,11 +37,7 @@ const details = (): IpluginDetails => ({
type: 'boolean',
defaultValue: 'false',
inputUI: {
type: 'dropdown',
options: [
'false',
'true',
],
type: 'switch',
},
tooltip: 'This will pause the node if the file access checks fail',
},