summaryrefslogtreecommitdiffstats
path: root/web_src/js/index.js
diff options
context:
space:
mode:
authorGusted <postmaster@gusted.xyz>2024-10-22 19:58:44 +0200
committerGusted <postmaster@gusted.xyz>2024-10-22 19:58:44 +0200
commit4c6587d6a084d45cdbb5bd900f99573d0259d984 (patch)
tree95d38e4d8504ce42d4e4e8c8033929bfcb638acb /web_src/js/index.js
parentMerge pull request 'conf: Improve delete_old_actions description' (#5644) fro... (diff)
downloadforgejo-4c6587d6a084d45cdbb5bd900f99573d0259d984.tar.xz
forgejo-4c6587d6a084d45cdbb5bd900f99573d0259d984.zip
feat: use combo markdown editor for milestone description
- Use the combo markdown editor for the milestone description. The milestone description is rendered in markdown, so it makes sense to use a 'markdown-aware' editor. This also includes the option to use monospace font. - Resolves #5649
Diffstat (limited to 'web_src/js/index.js')
-rw-r--r--web_src/js/index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/web_src/js/index.js b/web_src/js/index.js
index 77014a74c0..80aff9e59e 100644
--- a/web_src/js/index.js
+++ b/web_src/js/index.js
@@ -86,6 +86,7 @@ import {initRepoDiffCommitBranchesAndTags} from './features/repo-diff-commit.js'
import {initDirAuto} from './modules/dirauto.js';
import {initRepositorySearch} from './features/repo-search.js';
import {initColorPickers} from './features/colorpicker.js';
+import {initRepoMilestoneEditor} from './features/repo-milestone.js';
// Init Gitea's Fomantic settings
initGiteaFomantic();
@@ -175,6 +176,7 @@ onDomReady(() => {
initRepoContributors();
initRepoCodeFrequency();
initRepoRecentCommits();
+ initRepoMilestoneEditor();
initCommitStatuses();
initCaptcha();