mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Fix #1155
This commit is contained in:
parent
d8664096f9
commit
1e2c979341
4
public/js/ff/charts.js
vendored
4
public/js/ff/charts.js
vendored
@ -83,6 +83,10 @@ const verticalLinePlugin = {
|
||||
// write label
|
||||
context.fillStyle = "#444444";
|
||||
context.textAlign = 'left';
|
||||
if(pointIndex > 23) {
|
||||
todayText = todayText + ' ';
|
||||
context.textAlign = 'right';
|
||||
}
|
||||
context.fillText(todayText, lineLeftOffset, scale.top * 3); // (scale.bottom - scale.top) / 2 + scale.top
|
||||
},
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user