Skip to content

Commit

Permalink
🐛 Fix filter name for archetypes (#1560)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibolton336 authored Nov 22, 2023
1 parent 86c80d9 commit 63e27fd
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -340,12 +340,12 @@ export const ApplicationsTable: React.FC = () => {
getItemValue: (item) => item?.name || "",
},
{
key: "archetype",
title: t("terms.archetype"),
key: "archetypes",
title: t("terms.archetypes"),
type: FilterType.multiselect,
placeholderText:
t("actions.filterBy", {
what: t("terms.archetype").toLowerCase(),
what: t("terms.archetypes").toLowerCase(),
}) + "...",
getItemValue: (item) => {
const archetypeNames = item?.archetypes
Expand Down

0 comments on commit 63e27fd

Please sign in to comment.