BIG-58: add starts/ends with comparator option to advanced filter dropdown.

This commit is contained in:
a.bouhuolia
2021-09-13 20:01:58 +02:00
parent aabcf71621
commit 40ff1464c8
5 changed files with 23 additions and 0 deletions

View File

@@ -29,6 +29,8 @@ export const getTextCompatators = () => [
{ value: 'not_contain', label: intl.get('not_contain') },
{ value: 'equal', label: intl.get('equals') },
{ value: 'not_equal', label: intl.get('not_equals') },
{ value: 'starts_with', label: intl.get('starts_with') },
{ value: 'ends_with', label: intl.get('ends_with') },
];
export const getDateCompatators = () => [

View File

@@ -209,6 +209,8 @@
"not_equal": "ليس متساوي",
"contain": "يحتوي",
"not_contain": "لا يحتوي",
"starts_with": "يبدأ بـ",
"ends_with": "ينتهي بـ",
"cash": "النقدية",
"accrual": "الاستحقاق",
"from": "من",

View File

@@ -202,6 +202,8 @@
"not_equal": "Not Equal",
"contain": "Contain",
"not_contain": "Not Contain",
"starts_with": "Starts with",
"ends_with": "Ends with",
"cash": "Cash",
"accrual": "Accrual",
"from": "From",