diff options
author | silverwind <me@silverwind.io> | 2017-12-03 00:16:35 +0100 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2017-12-03 01:16:35 +0200 |
commit | 4947cfb7b07570b8c94c2f6ba734c785bd3f2829 (patch) | |
tree | a1d18a09d335eafa0d3651f665d52db060413bb0 /templates/user | |
parent | ef5364950ba98ec1bf8dcc44d88f956a6f2ad933 (diff) | |
download | gitea-4947cfb7b07570b8c94c2f6ba734c785bd3f2829.tar.gz gitea-4947cfb7b07570b8c94c2f6ba734c785bd3f2829.zip |
Remove box-shadow from UI, fix dashboard issue (#3065)
Diffstat (limited to 'templates/user')
-rw-r--r-- | templates/user/dashboard/dashboard.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/user/dashboard/dashboard.tmpl b/templates/user/dashboard/dashboard.tmpl index 2ad4008bbf..c1f02ac8d1 100644 --- a/templates/user/dashboard/dashboard.tmpl +++ b/templates/user/dashboard/dashboard.tmpl @@ -31,7 +31,7 @@ <a :class="{item: true, active: tab === 'repos'}" @click="changeTab('repos')">{{.i18n.Tr "repository"}}</a> <a :class="{item: true, active: tab === 'organizations'}" @click="changeTab('organizations')">{{.i18n.Tr "organization"}}</a> </div> - <div v-show="tab === 'repos'" class="ui tab active list"> + <div v-show="tab === 'repos'" class="ui tab active list dashboard-repos"> <h4 class="ui top attached header"> {{.i18n.Tr "home.my_repos"}} <span class="ui grey label">${reposTotalCount}</span> <div class="ui right"> |