UX: Fix activity column display in wizard homepage step

Followup to f8f281cdad, thanks @jjafeux
This commit is contained in:
Penar Musaraj 2020-05-28 11:24:24 -04:00
parent a41476800b
commit a98182debf
No known key found for this signature in database
GPG Key ID: E390435D881FF0F7
1 changed files with 1 additions and 1 deletions

View File

@ -429,7 +429,7 @@ export default createPreviewComponent(659, 320, {
ctx.font = `${bodyFontSize}em 'Arial'`;
for (let j = 2; j <= 4; j++) {
ctx.fillText(
j === 5 ? "1h" : Math.floor(Math.random() * 90) + 10,
j === 4 ? "1h" : Math.floor(Math.random() * 90) + 10,
cols[j] + margin,
y + rowHeight * 0.6
);