1
0
Fork 0
mirror of synced 2024-08-19 03:51:29 +12:00

Update filter labels to reflect that more than and less than also include equal to

This commit is contained in:
Andrew Kingston 2022-12-07 09:00:29 +00:00
parent 0e9477b982
commit d4a7412163
2 changed files with 3 additions and 3 deletions

View file

@ -300,7 +300,7 @@
column-gap: var(--spacing-l);
row-gap: var(--spacing-s);
align-items: center;
grid-template-columns: 1fr 150px 120px 1fr 16px 16px;
grid-template-columns: 1fr 170px 120px 1fr 16px 16px;
}
.filter-label {

View file

@ -28,11 +28,11 @@ export const OperatorOptions = {
},
MoreThan: {
value: "rangeLow",
label: "More than",
label: "More than or equal to",
},
LessThan: {
value: "rangeHigh",
label: "Less than",
label: "Less than or equal to",
},
Contains: {
value: "contains",