do not hide "matches" and "does not match" checkers
- they show up previously with / typed – end user needs to know about it - inconsistent with some other fields, that show it directly Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
parent
c2977c5c0f
commit
83beefc3eb
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -20,18 +20,14 @@
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { stringValidator, validateIPv4, validateIPv6 } from './../../helpers/validators'
|
import { stringValidator, validateIPv4, validateIPv6 } from '../../helpers/validators'
|
||||||
import FileMimeType from './FileMimeType'
|
import FileMimeType from './FileMimeType'
|
||||||
import FileSystemTag from './FileSystemTag'
|
import FileSystemTag from './FileSystemTag'
|
||||||
|
|
||||||
const stringOrRegexOperators = (check) => {
|
const stringOrRegexOperators = () => {
|
||||||
if (check.value.startsWith('/')) {
|
|
||||||
return [
|
|
||||||
{ operator: 'matches', name: t('workflowengine', 'matches') },
|
|
||||||
{ operator: '!matches', name: t('workflowengine', 'does not match') },
|
|
||||||
]
|
|
||||||
}
|
|
||||||
return [
|
return [
|
||||||
|
{ operator: 'matches', name: t('workflowengine', 'matches') },
|
||||||
|
{ operator: '!matches', name: t('workflowengine', 'does not match') },
|
||||||
{ operator: 'is', name: t('workflowengine', 'is') },
|
{ operator: 'is', name: t('workflowengine', 'is') },
|
||||||
{ operator: '!is', name: t('workflowengine', 'is not') },
|
{ operator: '!is', name: t('workflowengine', 'is not') },
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in New Issue