Skip to content

Commit

Permalink
Merge pull request #145 from AtlassianPS/develop
Browse files Browse the repository at this point in the history
Release bugfix
  • Loading branch information
lipkau authored Sep 6, 2018
2 parents 127b35b + a3663ee commit 3a73911
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ConfluencePS/Public/ConvertTo-Table.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function ConvertTo-Table {
}
$_.PSObject.Properties |
ForEach-Object -Begin {$Row = ""} `
-Process {$Row += "|$($_.Value)"} `
-Process {if ($($_.value)) {$Row += "|$($_.Value)"} else {$Row += "| "}} `
-End {$Row += "|"}
$RowArray.Add($Row) | Out-Null
}
Expand Down

0 comments on commit 3a73911

Please sign in to comment.