Browse Source
Merge pull request #23107 from abpframework/auto-merge/rel-9-2/3791
Merge branch rel-9.3 with rel-9.2
pull/23108/head
maliming
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
1 deletions
-
npm/ng-packs/packages/permission-management/src/lib/components/permission-management.component.ts
|
|
|
@ -339,9 +339,10 @@ export class PermissionManagementComponent |
|
|
|
} |
|
|
|
|
|
|
|
setTabCheckboxState() { |
|
|
|
const selectablePermissions = this.permissions.filter(per => |
|
|
|
const selectablePermissions = this.selectedGroupPermissions.filter(per => |
|
|
|
per.grantedProviders.every(p => p.providerName === this.providerName), |
|
|
|
); |
|
|
|
|
|
|
|
const selectedPermissions = selectablePermissions.filter(per => per.isGranted); |
|
|
|
const element = document.querySelector('#select-all-in-this-tabs') as any; |
|
|
|
if (!element) { |
|
|
|
|