diff options
author | yp05327 <576951401@qq.com> | 2024-12-04 01:52:25 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-03 16:52:25 +0000 |
commit | 690d07470cab795d64153c77405aba7dc5814a9e (patch) | |
tree | 2032aad27ac26608909829c2fe4fb50989fb4e13 /templates/repo | |
parent | 136408307c6de7aac2ab5476f8cddf90f39355dc (diff) | |
download | gitea-690d07470cab795d64153c77405aba7dc5814a9e.tar.gz gitea-690d07470cab795d64153c77405aba7dc5814a9e.zip |
Fix word overflow in file search page (#32695)
Diffstat (limited to 'templates/repo')
-rw-r--r-- | templates/repo/find/files.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/find/files.tmpl b/templates/repo/find/files.tmpl index 548ce2f0e8..ce242796be 100644 --- a/templates/repo/find/files.tmpl +++ b/templates/repo/find/files.tmpl @@ -9,7 +9,7 @@ <input id="repo-file-find-input" type="text" autofocus data-url-data-link="{{.DataLink}}" data-url-tree-link="{{.TreeLink}}"> </div> </div> - <table id="repo-find-file-table" class="ui single line table"> + <table id="repo-find-file-table" class="ui single line fixed table"> <tbody> </tbody> </table> |