Skip to content

Commit

Permalink
Fix some more hidden problems (#23074)
Browse files Browse the repository at this point in the history
Follows #22950
  • Loading branch information
wxiaoguang authored Feb 22, 2023
1 parent 90a7bba commit eb5a557
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion templates/admin/auth/edit.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
<input type="checkbox" name="groups_enabled" class="js-ldap-group-toggle" {{if $cfg.GroupsEnabled}}checked{{end}}>
</div>
</div>
<div id="ldap-group-options" class="ui segment secondary" {{if not $cfg.GroupsEnabled}}hidden{{end}}>
<div id="ldap-group-options" class="ui segment secondary {{if not $cfg.GroupsEnabled}}gt-hidden{{end}}">
<div class="field">
<label>{{.locale.Tr "admin.auths.group_search_base"}}</label>
<input name="group_dn" value="{{$cfg.GroupDN}}" placeholder="e.g. ou=group,dc=mydomain,dc=com">
Expand Down
2 changes: 1 addition & 1 deletion templates/admin/user/edit.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
<input name="allow_git_hook" type="checkbox" {{if .User.CanEditGitHook}}checked{{end}} {{if DisableGitHooks}}disabled{{end}}>
</div>
</div>
<div class="inline field" {{if or (DisableImportLocal) (.DisableMigrations)}}hidden{{end}}>
<div class="inline field {{if or (DisableImportLocal) (.DisableMigrations)}}gt-hidden{{end}}">
<div class="ui checkbox">
<label><strong>{{.locale.Tr "admin.users.allow_import_local"}}</strong></label>
<input name="allow_import_local" type="checkbox" {{if .User.CanImportLocal}}checked{{end}} {{if DisableImportLocal}}disabled{{end}}>
Expand Down
8 changes: 4 additions & 4 deletions web_src/js/features/admin/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ export function initAdminCommon() {

function onUsePagedSearchChange() {
if ($('#use_paged_search').prop('checked')) {
showElem($('.search-page-size'))
.find('input').attr('required', 'required');
showElem('.search-page-size');
$('.search-page-size').find('input').attr('required', 'required');
} else {
hideElem($('.search-page-size'))
.find('input').removeAttr('required');
hideElem('.search-page-size');
$('.search-page-size').find('input').removeAttr('required');
}
}

Expand Down

0 comments on commit eb5a557

Please sign in to comment.