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.
2 parents 127b35b + a3663ee commit 3a73911Copy full SHA for 3a73911
ConfluencePS/Public/ConvertTo-Table.ps1
@@ -38,7 +38,7 @@ function ConvertTo-Table {
38
}
39
$_.PSObject.Properties |
40
ForEach-Object -Begin {$Row = ""} `
41
- -Process {$Row += "|$($_.Value)"} `
+ -Process {if ($($_.value)) {$Row += "|$($_.Value)"} else {$Row += "| "}} `
42
-End {$Row += "|"}
43
$RowArray.Add($Row) | Out-Null
44
0 commit comments