Fix charts issue for stargazers plugin (missing month name and inequal height)

This commit is contained in:
lowlighter
2021-01-09 20:43:20 +01:00
parent 675d777a7b
commit d119dfaee5
2 changed files with 2 additions and 1 deletions

View File

@@ -878,7 +878,7 @@
<section class="column chart"> <section class="column chart">
<h3>New stargazers per day</h3> <h3>New stargazers per day</h3>
<div class="chart-bars"> <div class="chart-bars">
<% { let previous = true; for (const [date, value] of Object.entries(plugins.stargazers.increments.dates)) { const p = value/plugins.stargazers.increments.max; const [y, m, d] = date.split("-").map(Number) %> <% { let previous = null; for (const [date, value] of Object.entries(plugins.stargazers.increments.dates)) { const p = value/plugins.stargazers.increments.max; const [y, m, d] = date.split("-").map(Number) %>
<div class="entry"> <div class="entry">
<span class="value"><%= value != 0 ? value : "" %></span> <span class="value"><%= value != 0 ? value : "" %></span>
<div class="bar" style="height: <%= p*50 %>px; background-color: var(--color-calendar-graph-day-L<%= Math.ceil(p/0.25) %>-bg)"></div> <div class="bar" style="height: <%= p*50 %>px; background-color: var(--color-calendar-graph-day-L<%= Math.ceil(p/0.25) %>-bg)"></div>

Before

Width:  |  Height:  |  Size: 100 KiB

After

Width:  |  Height:  |  Size: 100 KiB

View File

@@ -331,6 +331,7 @@
align-items: flex-end; align-items: flex-end;
width: 100%; width: 100%;
margin: 8px 0 4px; margin: 8px 0 4px;
flex-grow: 1;
} }
.chart-bars .entry { .chart-bars .entry {