diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2023-10-08 22:23:39 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-08 14:23:39 +0000 |
commit | f40538e6676da69758d384c34d6e4129316f121e (patch) | |
tree | 3f30eeb2aa5fe6b6c839200f00a807be61f48693 /templates/admin | |
parent | ab074c9b982e242178896edea7fc6d7926fdb375 (diff) | |
download | gitea-f40538e6676da69758d384c34d6e4129316f121e.tar.gz gitea-f40538e6676da69758d384c34d6e4129316f121e.zip |
Remove unnecessary desc for openssh key cron task (#27515)
Diffstat (limited to 'templates/admin')
-rw-r--r-- | templates/admin/dashboard.tmpl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/templates/admin/dashboard.tmpl b/templates/admin/dashboard.tmpl index 6cb6c38e15..65d9c370f3 100644 --- a/templates/admin/dashboard.tmpl +++ b/templates/admin/dashboard.tmpl @@ -31,13 +31,11 @@ </tr> {{if and (not .SSH.Disabled) (not .SSH.StartBuiltinServer)}} <tr> - <td>{{ctx.Locale.Tr "admin.dashboard.resync_all_sshkeys"}}<br> - {{ctx.Locale.Tr "admin.dashboard.resync_all_sshkeys.desc"}}</td> + <td>{{ctx.Locale.Tr "admin.dashboard.resync_all_sshkeys"}}</td> <td class="text right"><button type="submit" class="ui primary button" name="op" value="resync_all_sshkeys">{{svg "octicon-play"}} {{ctx.Locale.Tr "admin.dashboard.operation_run"}}</button></td> </tr> <tr> - <td>{{ctx.Locale.Tr "admin.dashboard.resync_all_sshprincipals"}}<br> - {{ctx.Locale.Tr "admin.dashboard.resync_all_sshprincipals.desc"}}</td> + <td>{{ctx.Locale.Tr "admin.dashboard.resync_all_sshprincipals"}}</td> <td class="text right"><button type="submit" class="ui primary button" name="op" value="resync_all_sshprincipals">{{svg "octicon-play" 16}} {{ctx.Locale.Tr "admin.dashboard.operation_run"}}</button></td> </tr> {{end}} |