(ex: InputSearchExpression)
| 139 | } |
| 140 | |
| 141 | export function getText(ex: InputSearchExpression) { |
| 142 | if (ex.operator === 'isnullorEmpty') return ''; |
| 143 | return (typeof ex.value === 'string') ? ex.value : ex.value == null ? '' : ex.value.toString(); |
| 144 | } |
| 145 | |
| 146 | export function SearchTerm(props: Props) { |
| 147 | const ex = props.searchExpression; |
no test coverage detected