diff options
author | Tim-Niclas Oelschläger <72873130+zokkis@users.noreply.github.com> | 2024-03-03 11:18:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-03 10:18:34 +0000 |
commit | e3524c63d6d42865ea8288af89b372544d35474b (patch) | |
tree | a41eb5e0c2384df29bdb9f00a1b41b30f91bf428 /web_src/js/index.js | |
parent | e71b69257c38178eed9ccd0b62a5ae47d67858d4 (diff) | |
download | gitea-e3524c63d6d42865ea8288af89b372544d35474b.tar.gz gitea-e3524c63d6d42865ea8288af89b372544d35474b.zip |
Filter Repositories by type (#29231)
Filter Repositories by type (resolves #1170, #1318)
before:
![image](https://github.com/go-gitea/gitea/assets/72873130/74e6be62-9010-4ab4-8f9b-bd8afbebb8fb)
after:
![image](https://github.com/go-gitea/gitea/assets/72873130/e4d85ed6-7864-4150-8d72-5194dac1293f)
Diffstat (limited to 'web_src/js/index.js')
-rw-r--r-- | web_src/js/index.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/web_src/js/index.js b/web_src/js/index.js index c7eac9d242..abf0d469d1 100644 --- a/web_src/js/index.js +++ b/web_src/js/index.js @@ -84,6 +84,7 @@ import {initRepoCodeFrequency} from './features/code-frequency.js'; import {initRepoRecentCommits} from './features/recent-commits.js'; import {initRepoDiffCommitBranchesAndTags} from './features/repo-diff-commit.js'; import {initDirAuto} from './modules/dirauto.js'; +import {initRepositorySearch} from './features/repo-search.js'; // Init Gitea's Fomantic settings initGiteaFomantic(); @@ -170,6 +171,7 @@ onDomReady(() => { initRepoWikiForm(); initRepository(); initRepositoryActionView(); + initRepositorySearch(); initRepoContributors(); initRepoCodeFrequency(); initRepoRecentCommits(); |