Skip to content

Commit cb0ce95

Browse files
authored
Remove code display from cluster actions menu (#49)
Fixes #48
1 parent 23a490e commit cb0ce95

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Build.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ param (
1414

1515
[Parameter()]
1616
[Int16]
17-
$minorVersion = 25,
17+
$minorVersion = 26,
1818

1919
[Parameter()]
2020
[Int16]

src/AzKube/AzKube.psd1

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
# Script module or binary module file associated with this manifest.
1212
RootModule = './AzKube.psm1'
1313

14-
# Version number of this module. Set canonically in Build.ps1
15-
ModuleVersion = '0.25.0'
14+
# Version number of this module.
15+
ModuleVersion = '0.26.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()

src/AzKube/private/Aks-Utilities.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class ManagementAction {
3636
}
3737

3838
[string] ToString() {
39-
return "$($this.Name) - $($this.Description) > $($this.Script)"
39+
return "$($this.Description) ($($this.Name))"
4040
}
4141
}
4242

0 commit comments

Comments
 (0)