Skip to content

Commit

Permalink
AG-1460: improvements from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
hallieswan authored and EC2 Default User committed Jan 9, 2025
1 parent 49ff99c commit 9f32839
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ service_account.json
Thumbs.db

.angular
.yarn

# Gradle
.gradle
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class BoxPlotComponent {

_data: boxPlotChartItem[] = [];
points: CategoryPoint[] = [];
summaries: CategoryBoxplotSummary[] | undefined = [];
summaries: CategoryBoxplotSummary[] = [];
xAxisCategoryToTooltipText: Record<string, string> | undefined = {};
isInitialized = false;
pointTooltipFormatter: ((pt: CategoryPoint) => string) | undefined;
Expand Down Expand Up @@ -74,7 +74,7 @@ export class BoxPlotComponent {
thirdQuartile: item.quartiles[2],
max: item.value[2],
};
this.summaries?.push(summary);
this.summaries.push(summary);

if (this.xAxisCategoryToTooltipText) {
const tooltipText = this.getXAxisTooltipText(xAxisCategory);
Expand Down

0 comments on commit 9f32839

Please sign in to comment.