summaryrefslogtreecommitdiff
path: root/src/web/app
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2017-08-30 17:32:03 +0900
committersyuilo <syuilotan@yahoo.co.jp>2017-08-30 17:32:03 +0900
commit52138eb4c317a8a23ba5d12a9194937914713f35 (patch)
tree25c011f35da6993bdaf4fbd9b9a0b5863c98cf5e /src/web/app
parentImplement #746 (diff)
downloadmisskey-52138eb4c317a8a23ba5d12a9194937914713f35.tar.gz
misskey-52138eb4c317a8a23ba5d12a9194937914713f35.tar.bz2
misskey-52138eb4c317a8a23ba5d12a9194937914713f35.zip
[Client] Fix bug
Diffstat (limited to 'src/web/app')
-rw-r--r--src/web/app/common/tags/weekly-activity-chart.tag6
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>