diff options
author | wxiaoguang <wxiaoguang@gmail.com> | 2024-11-15 09:30:26 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-15 01:30:26 +0000 |
commit | 21f7db2124cf42c3c74f7728b658f1bc1030acf1 (patch) | |
tree | 01ee5c75f68c97573be742d24f16d440a3b5dab6 /templates/repo/projects | |
parent | 6f1de0a9e5a58b63d0c64b1182b7686c742a97c1 (diff) | |
download | gitea-21f7db2124cf42c3c74f7728b658f1bc1030acf1.tar.gz gitea-21f7db2124cf42c3c74f7728b658f1bc1030acf1.zip |
Fix incorrect project page CSS class (#32510)
Otherwise milestone JS would run on this page and cause errors
Diffstat (limited to 'templates/repo/projects')
-rw-r--r-- | templates/repo/projects/new.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/projects/new.tmpl b/templates/repo/projects/new.tmpl index e70f3bca87..67abfe24be 100644 --- a/templates/repo/projects/new.tmpl +++ b/templates/repo/projects/new.tmpl @@ -1,5 +1,5 @@ {{template "base/head" .}} -<div role="main" aria-label="{{.Title}}" class="page-content repository projects edit-project new milestone"> +<div role="main" aria-label="{{.Title}}" class="page-content repository projects edit-project new"> {{template "repo/header" .}} <div class="ui container"> {{template "projects/new" .}} |