diff options
author | 赵智超 <1012112796@qq.com> | 2020-05-19 14:42:43 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-19 02:42:43 -0400 |
commit | 6ccd19ef86b3b729a3b6dc35076639db5531550a (patch) | |
tree | 0de8834f726aee20138b4d2a9b936074904e22f1 /web_src/js/components | |
parent | 7b66400f55779e5af3704403e605abb025a9002d (diff) | |
download | gitea-6ccd19ef86b3b729a3b6dc35076639db5531550a.tar.gz gitea-6ccd19ef86b3b729a3b6dc35076639db5531550a.zip |
ui: Add dividing line between heatmap and feeds in dashboard view (#11437)
* ui: Add dividing line between heatmap and feeds in dashboard view
I think it's necessary to add dividing line between heatmap
and feeds in dashboard view, or the first items in feed is too
near with heatmap which is not a good view.
Signed-off-by: a1012112796 <1012112796@qq.com>
* Change the implementation method
* change style
* restart ci
Co-authored-by: Lauris BH <lauris@nix.lv>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'web_src/js/components')
-rw-r--r-- | web_src/js/components/ActivityHeatmap.vue | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web_src/js/components/ActivityHeatmap.vue b/web_src/js/components/ActivityHeatmap.vue index ec241b64fa..3c46748816 100644 --- a/web_src/js/components/ActivityHeatmap.vue +++ b/web_src/js/components/ActivityHeatmap.vue @@ -7,6 +7,7 @@ {{ totalContributions }} total contributions in the last 12 months </h4> <calendar-heatmap v-show="!isLoading" :locale="locale" :no-data-text="locale.no_contributions" :tooltip-unit="locale.contributions" :end-date="endDate" :values="values" :range-color="colorRange"/> + <div class="ui divider"></div> </div> </template> |