Skip to content
This repository has been archived by the owner on Aug 30, 2022. It is now read-only.

Commit

Permalink
Fix bug in selection
Browse files Browse the repository at this point in the history
  • Loading branch information
Mihai Budiu committed Apr 16, 2020
1 parent 96846c6 commit d964d26
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/main/webapp/dataViews/axisData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ export class AxisData {
if (this.description.kind === "Integer")
result = formatNumber(Math.round(inv as number));
else if (kindIsString(this.description.kind))
result = this.getString(inv as number, false);
result = this.getString(inv as number, true);
else if (this.description.kind === "Double")
result = formatNumber(inv as number);
else if (this.description.kind === "Date")
Expand Down
1 change: 1 addition & 0 deletions web/src/main/webapp/dataViews/histogramView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -370,6 +370,7 @@ export class HistogramView extends HistogramViewBase /*implements IScrollTarget*
"The second column that will be used in addition to the one displayed here " +
"for drawing histogram with quantiles of the second column distributions.");
dialog.setAction(() => this.showQuartiles(dialog.getColumnName("column")));
dialog.setCacheTitle("HistogramQuartiles");
dialog.show();
}

Expand Down

0 comments on commit d964d26

Please sign in to comment.