Fixes #4046 - Core Workflow - Unable to select "has changed" logic when creating new workflow. It is also replaced with "is" in previously created workflows.
This commit is contained in:
parent
68a034e159
commit
74da7fa014
1 changed files with 7 additions and 7 deletions
|
@ -50,16 +50,16 @@ class App.UiElement.core_workflow_condition extends App.UiElement.ApplicationSel
|
||||||
|
|
||||||
operatorsType =
|
operatorsType =
|
||||||
'active$': [__('is')]
|
'active$': [__('is')]
|
||||||
'boolean$': [__('is'), __('is not'), __('is set'), __('not set'), _('has changed'), __('changed to')]
|
'boolean$': [__('is'), __('is not'), __('is set'), __('not set'), __('has changed'), __('changed to')]
|
||||||
'integer$': [__('is'), __('is not'), __('is set'), __('not set'), _('has changed'), __('changed to')]
|
'integer$': [__('is'), __('is not'), __('is set'), __('not set'), __('has changed'), __('changed to')]
|
||||||
'^select$': [__('is'), __('is not'), __('is set'), __('not set'), _('has changed'), __('changed to')]
|
'^select$': [__('is'), __('is not'), __('is set'), __('not set'), __('has changed'), __('changed to')]
|
||||||
'^multiselect$': [__('contains'), __('contains not'), __('contains all'), __('contains all not'), __('is set'), __('not set'), __('has changed'), __('changed to')]
|
'^multiselect$': [__('contains'), __('contains not'), __('contains all'), __('contains all not'), __('is set'), __('not set'), __('has changed'), __('changed to')]
|
||||||
'^tree_select$': [__('is'), __('is not'), __('is set'), __('not set'), _('has changed'), __('changed to')]
|
'^tree_select$': [__('is'), __('is not'), __('is set'), __('not set'), __('has changed'), __('changed to')]
|
||||||
'^(input|textarea|richtext)$': [__('is'), __('is not'), __('is set'), __('not set'), _('has changed'), __('changed to'), __('regex match'), __('regex mismatch')]
|
'^(input|textarea|richtext)$': [__('is'), __('is not'), __('is set'), __('not set'), __('has changed'), __('changed to'), __('regex match'), __('regex mismatch')]
|
||||||
|
|
||||||
operatorsName =
|
operatorsName =
|
||||||
'_id$': [__('is'), __('is not'), __('is set'), __('not set'), _('has changed'), __('changed to')]
|
'_id$': [__('is'), __('is not'), __('is set'), __('not set'), __('has changed'), __('changed to')]
|
||||||
'_ids$': [__('is'), __('is not'), __('is set'), __('not set'), _('has changed'), __('changed to')]
|
'_ids$': [__('is'), __('is not'), __('is set'), __('not set'), __('has changed'), __('changed to')]
|
||||||
|
|
||||||
# merge config
|
# merge config
|
||||||
elements = {}
|
elements = {}
|
||||||
|
|
Loading…
Reference in a new issue