Skip to content

Commit

Permalink
Tweak in how the helm ls command result is displayed
Browse files Browse the repository at this point in the history
  • Loading branch information
garronej committed Oct 8, 2023
1 parent cbd3376 commit 23c6064
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function formatHelmLsResp(params: {

return {
[key]: `${key}${" ".repeat(
Math.max(nameMaxLength + 3 - key.length, minPadding)
Math.max(nameMaxLength + 2 - key.length, minPadding)
)} `
};
})(),
Expand All @@ -51,7 +51,7 @@ export function formatHelmLsResp(params: {
const key = "REVISION";

return {
[key]: `${key}${" ".repeat(minPadding)} `
[key]: `${key}${" ".repeat(2)} `
};
})(),
...(() => {
Expand All @@ -64,7 +64,7 @@ export function formatHelmLsResp(params: {
...(() => {
const key = "STATUS";

return { [key]: `${key}${" ".repeat(minPadding)} ` };
return { [key]: `${key}${" ".repeat(3)} ` };
})(),
...(() => {
const key = "CHART";
Expand Down

0 comments on commit 23c6064

Please sign in to comment.