diff options
Diffstat (limited to 'src/web/app')
| -rw-r--r-- | src/web/app/common/tags/weekly-activity-chart.tag | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/web/app/common/tags/weekly-activity-chart.tag b/src/web/app/common/tags/weekly-activity-chart.tag index ae9f7071c5..d9c6c4bd1c 100644 --- a/src/web/app/common/tags/weekly-activity-chart.tag +++ b/src/web/app/common/tags/weekly-activity-chart.tag @@ -2,13 +2,13 @@ <svg if={ data } ref="canvas" viewBox="0 0 7 1" preserveAspectRatio="none"> <g each={ d, i in data.reverse() }> <rect width="0.8" riot-height={ d.postsH } - riot-x={ i + 0.1 } y={ 1 - d.postsH - d.repliesH - d.repostsH } + riot-x={ i + 0.1 } riot-y={ 1 - d.postsH - d.repliesH - d.repostsH } fill="#41ddde"/> <rect width="0.8" riot-height={ d.repliesH } - riot-x={ i + 0.1 } y={ 1 - d.repliesH - d.repostsH } + riot-x={ i + 0.1 } riot-y={ 1 - d.repliesH - d.repostsH } fill="#f7796c"/> <rect width="0.8" riot-height={ d.repostsH } - riot-x={ i + 0.1 } y={ 1 - d.repostsH } + riot-x={ i + 0.1 } riot-y={ 1 - d.repostsH } fill="#a1de41"/> </g> </svg> |