Skip to content

Commit

Permalink
Merge pull request #3109 from NikCharlebois/Fixes-#3066
Browse files Browse the repository at this point in the history
Fixes #3066 - DisabledWebPartIds Fix
  • Loading branch information
NikCharlebois authored Mar 31, 2023
2 parents 57200dc + e4c017b commit 525c253
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 @@ -101,6 +101,8 @@
and the apps were not exported.
* SPOTenantSettings
* [BREAKING CHANGE] Remove deprecated parameter RequireAcceptingAccountMatchInvitedAccount
* Fixes how we are extracting the DisabledWebPartIds parameter.
FIXES [#3066](https://github.com/microsoft/Microsoft365DSC/issues/3066)
* TeamsMeetingPolicy
* [BREAKING CHANGE] Remove deprecated parameter RecordingStorageMode
* DRG
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ function Get-TargetResource
HideDefaultThemes = $SPOTenantSettings.HideDefaultThemes
MarkNewFilesSensitiveByDefault = $SPOTenantSettings.MarkNewFilesSensitiveByDefault
ConditionalAccessPolicy = $SPOTenantSettings.ConditionalAccessPolicy
DisabledWebPartIds = $SPOTenantSettings.DisabledWebPartIds
DisabledWebPartIds = [String[]]$SPOTenantSettings.DisabledWebPartIds
CommentsOnSitePagesDisabled = $SPOTenantSettings.CommentsOnSitePagesDisabled
Credential = $Credential
ApplicationId = $ApplicationId
Expand Down

0 comments on commit 525c253

Please sign in to comment.