Browse Source

whitespace

fix-133-memory-crash
Dan Janosik 6 years ago
parent
commit
db2590b989
  1. 40
      views/mempool-summary.pug

40
views/mempool-summary.pug

@ -74,26 +74,26 @@ block content
script.
var ctx = document.getElementById("mempoolBarChart").getContext('2d');
var mempoolBarChart = new Chart(ctx, {
type: 'bar',
data: {
labels: feeBucketLabels,
datasets: [{
data: feeBucketTxCounts,
backgroundColor: bgColors
}]
},
options: {
legend: {
display: false
},
scales: {
yAxes: [{
ticks: {
beginAtZero:true
}
}]
}
}
type: 'bar',
data: {
labels: feeBucketLabels,
datasets: [{
data: feeBucketTxCounts,
backgroundColor: bgColors
}]
},
options: {
legend: {
display: false
},
scales: {
yAxes: [{
ticks: {
beginAtZero:true
}
}]
}
}
});
table(class="table table-striped table-responsive-sm")

Loading…
Cancel
Save