Skip to content

Commit e8e43a7

Browse files
GiteaBotsilverwindwxiaoguang
authored
Fix double border in system status table (#31363) (#31401)
Backport #31363 by silverwind Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
1 parent a9d1e43 commit e8e43a7

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

templates/admin/dashboard.tmpl

+5-3
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,11 @@
7676
{{ctx.Locale.Tr "admin.dashboard.system_status"}}
7777
</h4>
7878
{{/* TODO: make these stats work in multi-server deployments, likely needs per-server stats in DB */}}
79-
<div class="no-loading-indicator tw-hidden"></div>
80-
<div hx-get="{{$.Link}}/system_status" hx-swap="morph:innerHTML" hx-trigger="every 5s" hx-indicator=".no-loading-indicator" class="ui attached table segment">
81-
{{template "admin/system_status" .}}
79+
<div class="ui attached table segment">
80+
<div class="no-loading-indicator tw-hidden"></div>
81+
<div hx-get="{{$.Link}}/system_status" hx-swap="morph:innerHTML" hx-trigger="every 5s" hx-indicator=".no-loading-indicator">
82+
{{template "admin/system_status" .}}
83+
</div>
8284
</div>
8385
</div>
8486
{{template "admin/layout_footer" .}}

0 commit comments

Comments
 (0)