Skip to content

Commit 97da48c

Browse files
committed
Fix multiple column width issues
1 parent 9cb2edf commit 97da48c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Src/Private/Get-AbrOntapNetworkMGMT.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ function Get-AbrOntapNetworkMgmt {
159159
$TableParams = @{
160160
Name = "Data Network Information - $($ClusterInfo.ClusterName)"
161161
List = $false
162-
ColumnWidths = 35, 8, 21, 18, 18
162+
ColumnWidths = 33, 10, 21, 18, 18
163163
}
164164
if ($Report.ShowTableCaptions) {
165165
$TableParams['Caption'] = "- $($TableParams.Name)"

Src/Private/Get-AbrOntapRepClusterPeer.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function Get-AbrOntapRepClusterPeer {
4444
$TableParams = @{
4545
Name = "Replication - Cluster Peer Information - $($ClusterInfo.ClusterName)"
4646
List = $false
47-
ColumnWidths = 20, 20, 20, 10, 15, 15
47+
ColumnWidths = 20, 20, 19, 10, 15, 16
4848
}
4949
if ($Report.ShowTableCaptions) {
5050
$TableParams['Caption'] = "- $($TableParams.Name)"

Src/Private/Get-AbrOntapSecurityKMSExtStatus.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ function Get-AbrOntapSecurityKMSExtStatus {
4343
$TableParams = @{
4444
Name = "External Key Management Service (KMS) Status information - $($ClusterInfo.ClusterName)"
4545
List = $false
46-
ColumnWidths = 35, 25, 25, 15
46+
ColumnWidths = 35, 25, 15, 25
4747
}
4848
if ($Report.ShowTableCaptions) {
4949
$TableParams['Caption'] = "- $($TableParams.Name)"

Src/Private/Get-AbrOntapVserverIscsiSummary.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ function Get-AbrOntapVserverIscsiSummary {
5353
$TableParams = @{
5454
Name = "Vserver ISCSI Service Information - $($Vserver)"
5555
List = $true
56-
ColumnWidths = 40, 60
56+
ColumnWidths = 30, 70
5757
}
5858
if ($Report.ShowTableCaptions) {
5959
$TableParams['Caption'] = "- $($TableParams.Name)"

0 commit comments

Comments
 (0)