mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACS-4446] Folder Rules Bug Fix: Error thrown when Condition If Name Starts With/Ends With is used (#2918)
* ACS-4446 - renamed names * ACS-4446 - renamed 'less/greater than or equal' filds name
This commit is contained in:
committed by
GitHub
parent
372e3fe126
commit
93ba00516a
@@ -47,13 +47,13 @@ export const ruleConditionComparators: RuleConditionComparator[] = [
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'starts_with',
|
||||
name: 'begins',
|
||||
labels: {
|
||||
string: 'ACA_FOLDER_RULES.RULE_DETAILS.COMPARATORS.STARTS_WITH'
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'ends_with',
|
||||
name: 'ends',
|
||||
labels: {
|
||||
string: 'ACA_FOLDER_RULES.RULE_DETAILS.COMPARATORS.ENDS_WITH'
|
||||
}
|
||||
@@ -73,14 +73,14 @@ export const ruleConditionComparators: RuleConditionComparator[] = [
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'greater_than_or_equal',
|
||||
name: 'greater_than_equal',
|
||||
labels: {
|
||||
number: 'ACA_FOLDER_RULES.RULE_DETAILS.COMPARATORS.GREATER_THAN_OR_EQUAL',
|
||||
date: 'ACA_FOLDER_RULES.RULE_DETAILS.COMPARATORS.ON_OR_AFTER'
|
||||
}
|
||||
},
|
||||
{
|
||||
name: 'less_than_or_equal',
|
||||
name: 'less_than_equal',
|
||||
labels: {
|
||||
number: 'ACA_FOLDER_RULES.RULE_DETAILS.COMPARATORS.LESS_THAN_OR_EQUAL',
|
||||
date: 'ACA_FOLDER_RULES.RULE_DETAILS.COMPARATORS.ON_OR_BEFORE'
|
||||
|
Reference in New Issue
Block a user