Skip to content

Commit

Permalink
Fixed legends of bar chart
Browse files Browse the repository at this point in the history
  • Loading branch information
maricavor committed Sep 22, 2022
1 parent 08de9b1 commit d52743c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions app/assets/stylesheets/views/stats.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
min-width: 200px;
height: 800px;
margin: 0 auto;

.highcharts-a11y-proxy-group-legend {
display: none;
}
}
.highcharts-a11y-proxy-group-legend {
display: none;
}
.highcharts-data-table table {
min-width: 310px;
Expand Down
2 changes: 1 addition & 1 deletion app/javascript/application.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class App {
new FileUpload(elem);
});

var per_page_select = document.getElementById('per_page');
const per_page_select = document.getElementById('per_page');
if (per_page_select) {
per_page_select.onchange = function(evt){
var value = evt.target.value;
Expand Down

0 comments on commit d52743c

Please sign in to comment.