Skip to content

Commit

Permalink
Address some comments
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-s-molina committed Aug 9, 2022
1 parent 5eccb92 commit 5adb031
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ export default styled(BigNumberVis)`
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
&.no-trendline .subheader-line {
padding-bottom: 0.3em;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,12 +93,12 @@ export default function EchartsTreemap({
if (treePath.length > 0) {
const pointerEvent = eventParams.event.event;
const filters: QueryObjectFilterClause[] = [];
groupby.forEach((dimension, i) =>
treePath.forEach((path, i) =>
filters.push({
col: dimension,
col: groupby[i],
op: '==',
val: treePath[i],
formattedVal: treePath[i],
val: path,
formattedVal: path,
}),
);
onContextMenu(filters, pointerEvent.offsetX, pointerEvent.offsetY);
Expand Down

0 comments on commit 5adb031

Please sign in to comment.