diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2023-01-20 15:43:43 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-20 15:43:43 +0800 |
commit | 0c048e554ba42d99bd66c07447de5f35cf6c981b (patch) | |
tree | 1d99b73086df99a9c8ac5b189fb5bdf520d5045c /templates/user/settings/applications.tmpl | |
parent | b833ce49644022cff14ef6add69c2baed8c67e41 (diff) | |
download | gitea-0c048e554ba42d99bd66c07447de5f35cf6c981b.tar.gz gitea-0c048e554ba42d99bd66c07447de5f35cf6c981b.zip |
Fix template bug of access scope (#22540)
Fix https://github.com/go-gitea/gitea/pull/20908#discussion_r1082075526
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'templates/user/settings/applications.tmpl')
-rw-r--r-- | templates/user/settings/applications.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/user/settings/applications.tmpl b/templates/user/settings/applications.tmpl index c108f20b5b..5d990ac64b 100644 --- a/templates/user/settings/applications.tmpl +++ b/templates/user/settings/applications.tmpl @@ -60,7 +60,7 @@ </div> <div class="field"> <div class="ui checkbox"> - <input class="enable-system" type="checkbox" name="scope" value="public:repo"> + <input class="enable-system" type="checkbox" name="scope" value="public_repo"> <label>public_repo</label> </div> </div> |