We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0370ba1 commit 55184aeCopy full SHA for 55184ae
Modules/CIPPCore/Public/TenantGroups/Get-TenantGroups.ps1
@@ -89,7 +89,7 @@ function Get-TenantGroups {
89
Description = $Group.Description
90
GroupType = $Group.GroupType ?? 'static'
91
RuleLogic = $Group.RuleLogic ?? 'and'
92
- DynamicRules = $Group.DynamicRules ? ( $(@($Group.DynamicRules | ConvertFrom-Json)) ) : @()
+ DynamicRules = $Group.DynamicRules ? @($Group.DynamicRules | ConvertFrom-Json) : @()
93
Members = @($SortedMembers)
94
})
95
}
0 commit comments