diff options
author | silverwind <me@silverwind.io> | 2024-04-21 22:24:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-21 20:24:56 +0000 |
commit | 1b1b8500aea0a17e999093e65b573ce54ae080ae (patch) | |
tree | 9e73063457564c985dabba9c13f1f19dfa0a3b3c /templates/user | |
parent | 9de443ced2c328d9b58a5e144a765f402aab859d (diff) | |
download | gitea-1b1b8500aea0a17e999093e65b573ce54ae080ae.tar.gz gitea-1b1b8500aea0a17e999093e65b573ce54ae080ae.zip |
Fix flash on dashboard (#30572)
Fixes https://github.com/go-gitea/gitea/issues/30566, regression from
https://github.com/go-gitea/gitea/pull/30214.
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 030fd49940..415423d436 100644 --- a/templates/user/dashboard/dashboard.tmpl +++ b/templates/user/dashboard/dashboard.tmpl @@ -1,8 +1,8 @@ {{template "base/head" .}} <div role="main" aria-label="{{.Title}}" class="page-content dashboard feeds"> {{template "user/dashboard/navbar" .}} + {{template "base/alert" .}} <div class="ui container flex-container"> - {{template "base/alert" .}} <div class="flex-container-main"> {{template "user/heatmap" .}} {{template "user/dashboard/feeds" .}} |