We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc32333 commit df5a19bCopy full SHA for df5a19b
src/components/_common/overview-filters/text-filter/OverviewTextFilter.tsx
@@ -35,17 +35,17 @@ export const OverviewTextFilter = ({ hideLabel }: Props) => {
35
}
36
)
37
);
38
+ logAmplitudeEvent(AnalyticsEvents.FILTER, {
39
+ komponent: 'skjemaoversikt-filter',
40
+ filtertekst: value,
41
+ });
42
}, 500),
43
[setTextFilter]
44
45
46
const handleUserInput = (inputValue: string) => {
47
setTextInput(inputValue);
48
dispatchInput(inputValue);
- logAmplitudeEvent(AnalyticsEvents.FILTER, {
- komponent: 'skjemaoversikt-filter',
- filtertekst: inputValue,
- });
49
};
50
51
useEffect(() => {
0 commit comments