change full detail display to onHold

This commit is contained in:
pakintada@gmail.com 2024-01-12 15:13:38 +07:00
parent 5b9b1de94b
commit 4032baa8ab
3 changed files with 118 additions and 69 deletions

View file

@ -91,5 +91,6 @@ export var stringParamsDefinition: { [key: string]: string } = {
}
export var conditionTests: { [key: string]: (arg: any) => boolean } = {
'not-zero': (arg: any) => arg != 0
'not-zero': (arg: any) => arg != 0,
'false-if-another-exist': (arg: any) => arg[1] != undefined
}