diff --git a/client/src/app/hooks/table-controls/DOCS.md b/client/src/app/hooks/table-controls/DOCS.md index dc71c557e0..0f5719a5fe 100644 --- a/client/src/app/hooks/table-controls/DOCS.md +++ b/client/src/app/hooks/table-controls/DOCS.md @@ -48,10 +48,7 @@ const tableControls = useLocalTableControls({ key: "name", title: "Name", type: FilterType.search, - placeholderText: - t("actions.filterBy", { - what: t("terms.name").toLowerCase(), - }) + "...", + placeholderText: "Filter by name...", getItemValue: (thing) => thing.name || "", }, ], @@ -171,10 +168,7 @@ const tableControlState = useTableControlState({ key: "name", title: "Name", type: FilterType.search, - placeholderText: - t("actions.filterBy", { - what: t("terms.name").toLowerCase(), - }) + "...", + placeholderText: "Filter by name...", getItemValue: (thing) => thing.name || "", }, ],