Skip to content

Commit

Permalink
Merge pull request #12 from one2nc/fix-alias
Browse files Browse the repository at this point in the history
Fix alias in help page
  • Loading branch information
chinmay185 authored Mar 15, 2023
2 parents e019e5f + 4d08126 commit 57b7417
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ GO_FLAGS ?=
NAME := cloudlens
OUTPUT_BIN ?= execs/${NAME}
PACKAGE := github.com/one2nc/$(NAME)
VERSION = v0.1.1
VERSION = v0.1.2
GIT_REV ?= $(shell git rev-parse --short HEAD)
SOURCE_DATE_EPOCH ?= $(shell date +%s)
ifeq ($(shell uname), Darwin)
Expand Down
2 changes: 1 addition & 1 deletion internal/view/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func (a *App) layout(ctx context.Context) {
main.AddItem(flash, 1, 1, false)

a.Main.AddPage("main", main, true, false)
a.Main.AddPage("splash", ui.NewSplash("0.1.1"), true, true)
a.Main.AddPage("splash", ui.NewSplash("0.1.2"), true, true)
a.toggleHeader(true)
}

Expand Down
4 changes: 2 additions & 2 deletions internal/view/help.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ func (h *Help) showServices() model.MenuHints {
},
{
Mnemonic: "ec2:i",
Description: "View EC2 snapshots",
Description: "View EC2 images",
},
{
Mnemonic: "ec2:s",
Description: "View EC2 images",
Description: "View EC2 snapshots",
},
{
Mnemonic: "vpc",
Expand Down

0 comments on commit 57b7417

Please sign in to comment.