Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
NikCharlebois committed Jun 16, 2023
1 parent 4a27ecc commit 290d800
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,9 @@
* SCProtectionAlert
* Prevents extracting system rules.
FIXES [#3224](https://github.com/microsoft/Microsoft365DSC/issues/3224)
* MISC
* Fixes the display of arrays as property values for Excel based reports from New-M365DSCReportFromConfiguration.
FIXES [#3173](https://github.com/microsoft/Microsoft365DSC/issues/3173)

# 1.23.614.1

Expand Down
2 changes: 1 addition & 1 deletion Modules/Microsoft365DSC/Modules/M365DSCReport.psm1
Expand Up @@ -412,7 +412,7 @@ function New-M365DSCConfigurationToExcel
{
if ($resource.$property.GetType().Name -eq 'Object[]')
{
$value = $resource.$property -join ','
$value = $resource.$property | Out-String
$report.Cells.Item($row, 3) = $value
}
else
Expand Down

0 comments on commit 290d800

Please sign in to comment.