Skip to content

Commit

Permalink
Help kea typegen out
Browse files Browse the repository at this point in the history
  • Loading branch information
robbie-c committed Nov 6, 2023
1 parent 13a6c75 commit 9389bdd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion frontend/src/scenes/web-analytics/webAnalyticsLogic.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,11 @@ export const webAnalyticsLogic = kea<webAnalyticsLogicType>([
connect({}),
actions({
setWebAnalyticsFilters: (webAnalyticsFilters: WebAnalyticsPropertyFilters) => ({ webAnalyticsFilters }),
togglePropertyFilter: (type: WebAnalyticsPropertyFilter['type'], key: string, value: string | number) => ({
togglePropertyFilter: (
type: PropertyFilterType.Event | PropertyFilterType.Person,
key: string,
value: string | number
) => ({
type,
key,
value,
Expand Down

0 comments on commit 9389bdd

Please sign in to comment.