mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 02:19:27 +08:00
FIX: allow mods to choose restricted categories as parent category.
Currently moderators can't choose a category with only “See” permission as a parent in `edit-category` modal.
This commit is contained in:
parent
28669dfeb2
commit
fc5111508f
|
@ -18,6 +18,7 @@
|
|||
categories=parentCategories
|
||||
allowSubCategories=true
|
||||
allowUncategorized=false
|
||||
allowRestrictedCategories=true
|
||||
onChange=(action (mut category.parent_category_id))
|
||||
}}
|
||||
</section>
|
||||
|
|
|
@ -138,7 +138,7 @@ export default ComboBoxComponent.extend({
|
|||
}
|
||||
|
||||
const permissionType = this.selectKit.options.permissionType;
|
||||
if (permissionType) {
|
||||
if (permissionType && !this.allowRestrictedCategories) {
|
||||
return permissionType === category.permission;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user