Skip to content

Remove code and command display from cluster actions menu #49

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ param (

[Parameter()]
[Int16]
$minorVersion = 25,
$minorVersion = 26,

[Parameter()]
[Int16]
Expand Down
4 changes: 2 additions & 2 deletions src/AzKube/AzKube.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
# Script module or binary module file associated with this manifest.
RootModule = './AzKube.psm1'

# Version number of this module. Set canonically in Build.ps1
ModuleVersion = '0.25.0'
# Version number of this module.
ModuleVersion = '0.26.0'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down
2 changes: 1 addition & 1 deletion src/AzKube/private/Aks-Utilities.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class ManagementAction {
}

[string] ToString() {
return "$($this.Name) - $($this.Description) > $($this.Script)"
return "$($this.Description) ($($this.Name))"
}
}

Expand Down