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 /web_src/js | |
parent | 136408307c6de7aac2ab5476f8cddf90f39355dc (diff) | |
download | gitea-690d07470cab795d64153c77405aba7dc5814a9e.tar.gz gitea-690d07470cab795d64153c77405aba7dc5814a9e.zip |
Fix word overflow in file search page (#32695)
Diffstat (limited to 'web_src/js')
-rw-r--r-- | web_src/js/features/repo-findfile.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web_src/js/features/repo-findfile.ts b/web_src/js/features/repo-findfile.ts index 1f151d7056..6500978bc8 100644 --- a/web_src/js/features/repo-findfile.ts +++ b/web_src/js/features/repo-findfile.ts @@ -90,6 +90,7 @@ function filterRepoFiles(filter) { const span = document.createElement('span'); // safely escape by using textContent span.textContent = part; + span.title = span.textContent; // if the target file path is "abc/xyz", to search "bx", then the matchResult is ['a', 'b', 'c/', 'x', 'yz'] // the matchResult[odd] is matched and highlighted to red. if (index % 2 === 1) span.classList.add('ui', 'text', 'red'); |