Skip to content

Commit

Permalink
remove shownAs
Browse files Browse the repository at this point in the history
  • Loading branch information
thmsobrmlr committed Oct 26, 2023
1 parent 60cdfb6 commit 0c03c8b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions frontend/src/scenes/insights/InsightNav/insightNavLogic.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ import { examples, TotalEventsTable } from '~/queries/examples'
import { LemonTag } from 'lib/lemon-ui/LemonTag/LemonTag'
import { filterTestAccountsDefaultsLogic } from 'scenes/project/Settings/filterTestAccountDefaultsLogic'
import { actionsAndEventsToSeries } from '~/queries/nodes/InsightQuery/utils/filtersToQueryNode'
import { getDisplay, getShownAs, getShowPercentStackView, getShowValueOnSeries } from '~/queries/nodes/InsightViz/utils'
import { getDisplay, getShowPercentStackView, getShowValueOnSeries } from '~/queries/nodes/InsightViz/utils'

export interface Tab {
label: string | JSX.Element
Expand Down Expand Up @@ -321,7 +321,6 @@ const mergeCachedProperties = (query: InsightQueryNode, cache: QueryPropertyCach
// ...(getCompare(node) ? { compare: getCompare(node) } : {}),
...(getShowValueOnSeries(node) ? { show_values_on_series: getShowValueOnSeries(node) } : {}),
...(getShowPercentStackView(node) ? { show_percent_stack_view: getShowPercentStackView(node) } : {}),
...(getShownAs(node) ? { shown_as: getShownAs(node) } : {}),
...(getDisplay(node) ? { display: getDisplay(node) } : {}),
}
}
Expand Down

0 comments on commit 0c03c8b

Please sign in to comment.