Skip to content

Commit 13020bd

Browse files
committed
fix(refine-vite): add new filter operators to DataTableFilterDropdown
1 parent 1619265 commit 13020bd

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

refine-vite/plugins/shadcn/src/components/refine-ui/data-table/data-table-filter.tsx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -866,6 +866,14 @@ const CRUD_OPERATOR_LABELS: Record<
866866
i18nKey: "table.filter.operator.nendswiths",
867867
defaultLabel: "Not ends with (case sensitive)",
868868
},
869+
eqs: {
870+
i18nKey: "table.filter.operator.eqs",
871+
defaultLabel: "Equals (case sensitive)",
872+
},
873+
nes: {
874+
i18nKey: "table.filter.operator.nes",
875+
defaultLabel: "Not equals (case sensitive)",
876+
},
869877
};
870878

871879
export type DataTableFilterOperatorSelectProps = {

0 commit comments

Comments
 (0)