diff options
author | Giteabot <teabot@gitea.io> | 2023-04-25 12:47:26 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-25 12:47:26 -0400 |
commit | 1254a8271ec470a4b46bd1b04e81a34a2f70399d (patch) | |
tree | 141d61fd3bea5ca27075a9692c43446435d27633 /templates | |
parent | ef3e3afc05a1ac4caca8a1c9478d2320c7341b0e (diff) | |
download | gitea-1254a8271ec470a4b46bd1b04e81a34a2f70399d.tar.gz gitea-1254a8271ec470a4b46bd1b04e81a34a2f70399d.zip |
Wrap too long push mirror addresses (#21120) (#24334)
Backport #21120 by @JakobDev
I noticed that it is possible to break the push mirror list by entering
a too long URL. This should fix it.
| Before | After |
|--------------|-----------|
|![Before](https://user-images.githubusercontent.com/15185051/189294585-333965d1-0f0f-48e2-96d5-e04b84b55ae3.png)|![After](https://user-images.githubusercontent.com/15185051/189294619-301e271c-b89b-4bc0-9c11-9536bd0302be.png)|
Co-authored-by: JakobDev <jakobdev@gmx.de>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/repo/settings/options.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/settings/options.tmpl b/templates/repo/settings/options.tmpl index 030c77b881..0a64492d36 100644 --- a/templates/repo/settings/options.tmpl +++ b/templates/repo/settings/options.tmpl @@ -169,7 +169,7 @@ {{range .PushMirrors}} <tr> {{$address := MirrorRemoteAddress $.Context $.Repository .GetRemoteName true}} - <td>{{$address.Address}}</td> + <td class="gt-word-break">{{$address.Address}}</td> <td>{{$.locale.Tr "repo.settings.mirror_settings.direction.push"}}</td> <td>{{if .LastUpdateUnix}}<time data-format="date-time" datetime="{{.LastUpdateUnix.FormatLong}}">{{.LastUpdateUnix.AsTime}}</time>{{else}}{{$.locale.Tr "never"}}{{end}} {{if .LastError}}<div class="ui red label tooltip" data-content="{{.LastError}}">{{$.locale.Tr "error"}}</div>{{end}}</td> <td class="right aligned"> |