Skip to content

Commit

Permalink
fix dataindex (#2883)
Browse files Browse the repository at this point in the history
  • Loading branch information
EDsCODE authored Jan 8, 2021
1 parent 3b32961 commit 95c9a4e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion frontend/src/scenes/insights/ActionsTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ export function ActionsTable({ dashboardItemId = null, view, filters: filtersPar
)
},
},
{ title: filters.session ? 'Value' : 'Count', dataIndex: 'aggregated_value' },
{
title: filters.session ? 'Value' : 'Count',
dataIndex: filters.session ? 'count' : 'aggregated_value',
},
]}
rowKey="label"
pagination={{ pageSize: 9999, hideOnSinglePage: true }}
Expand Down

0 comments on commit 95c9a4e

Please sign in to comment.