diff --git a/scm-ui/ui-components/src/forms/FilterInput.tsx b/scm-ui/ui-components/src/forms/FilterInput.tsx index fad1611c00..df63529377 100644 --- a/scm-ui/ui-components/src/forms/FilterInput.tsx +++ b/scm-ui/ui-components/src/forms/FilterInput.tsx @@ -30,6 +30,7 @@ type Props = WithTranslation & { filter: (p: string) => void; value?: string; testId?: string; + placeholder?: string; }; type State = { @@ -70,14 +71,14 @@ class FilterInput extends React.Component { }; render() { - const { t, testId } = this.props; + const { t, testId, placeholder } = this.props; return (