Skip to content

Commit

Permalink
Merge pull request #5638 from NikCharlebois/Fix-zero-length-whitespzce
Browse files Browse the repository at this point in the history
Fix Zero Length Whitespace
  • Loading branch information
NikCharlebois authored Jan 16, 2025
2 parents 218e21c + 0f19ea5 commit 90942ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* FabricAdminTenantSettings
* Added support for the AllowGetOneLakeUDK, AllowMountDfCreation, AllowOneLakeUDK,
ArtifactOrgAppPreview properties.
* Fix values that have a zero length whitespace character.

# 1.25.115.1

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2156,7 +2156,7 @@ function Get-M365DSCFabricTenantSettingObject
}
if (-not [System.String]::IsNullOrEmpty($Setting.tenantSettingGroup))
{
$values.Add('tenantSettingGroup', $Setting.tenantSettingGroup)
$values.Add('tenantSettingGroup',($Setting.tenantSettingGroup -creplace '\P{IsBasicLatin}'))
}
if ($null -ne $Setting.properties -and $Setting.properties.Length -gt 0)
{
Expand Down

0 comments on commit 90942ce

Please sign in to comment.