diff options
author | silverwind <me@silverwind.io> | 2022-04-01 02:15:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-01 02:15:46 +0200 |
commit | 1eb0da58c399d35397d75c07b2fe41dd63aba3b4 (patch) | |
tree | 7780339f361a857d6778a45729418c3d927418c4 /modules | |
parent | 08d199245ade5f1c4e0898cfe67f3b635a287675 (diff) | |
download | gitea-1eb0da58c399d35397d75c07b2fe41dd63aba3b4.tar.gz gitea-1eb0da58c399d35397d75c07b2fe41dd63aba3b4.zip |
Update JS dependencies (#19281)
- Upgrade all JS dependencies minus vue and vue-loader
- Adapt to breaking change of octicons
- Update eslint rules
- Tested Swagger UI, sortablejs and prod build
Diffstat (limited to 'modules')
-rw-r--r-- | modules/base/tool.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/base/tool.go b/modules/base/tool.go index bf53a8ea8a..47ce125853 100644 --- a/modules/base/tool.go +++ b/modules/base/tool.go @@ -279,7 +279,7 @@ func EntryIcon(entry *git.TreeEntry) string { } return "file-symlink-file" case entry.IsDir(): - return "file-directory" + return "file-directory-fill" case entry.IsSubModule(): return "file-submodule" } |