Skip to content

Commit

Permalink
Added fix for whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
NikCharlebois committed Jan 23, 2025
1 parent c14d51a commit 72b89b8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

# UNRELEASED

* FabricAdminTenantSettings
* Fix titles that have a zero length whitespace character.
* O365SearchAndIntelligenceConfigurations
* Added support for Meeting Insights settings.
* Added support for Service Principal authentication.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2140,7 +2140,7 @@ function Get-M365DSCFabricTenantSettingObject
$values = @{
settingName = $Setting.settingName
enabled = [Boolean]$Setting.enabled
title = $Setting.title
title = ($Setting.title -creplace '\P{IsBasicLatin}')
}
if (-not [System.String]::IsNullOrEmpty($Setting.canSpecifySecurityGroups))
{
Expand Down

0 comments on commit 72b89b8

Please sign in to comment.