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 4c393ba commit bf1b456Copy full SHA for bf1b456
Modules/CIPPCore/Public/Functions/Get-CIPPTenantAlignment.ps1
@@ -72,7 +72,7 @@ function Get-CIPPTenantAlignment {
72
if ($FieldValue -is [System.Boolean]) {
73
$FieldValue = [bool]$FieldValue
74
} elseif ($FieldValue -like '*{*') {
75
- $FieldValue = ConvertFrom-Json -InputObject $FieldValue -ErrorAction SilentlyContinue
+ $FieldValue = ConvertFrom-Json -Depth 100 -InputObject $FieldValue -ErrorAction SilentlyContinue
76
} else {
77
$FieldValue = [string]$FieldValue
78
}
0 commit comments