The following filter in my react-admin app leads to the list showing both records with status === "active" and records with status === "inactive". It should show only records with status === "active".
<SelectInput
alwaysOn
source="status"
choices={[
{ id: "lead", name: "Lead" },
{ id: "active", name: "Aktiv" },
{ id: "inactive", name: "Inaktiv" },
]}
/>
It seems like it includes records with status === "inactive" because "inactive" contains the substring "active".
Can I do something about that? Have I misconfigured my DataProvider? I am using react-admin-firebase.