Problem Statement
The about dialog currently displays "Kiro-Krew Version Information" as its title. This needs to be updated to reflect "Elasticache Krew" branding.
User Story
As a user, when I run the about command in the REPL, I should see "Elasticache Krew Version Information" as the dialog title instead of "Kiro-Krew Version Information".
Acceptance Criteria
Context
The title string is passed to activateOverlay() in the handleAbout() function:
m = m.activateOverlay(overlayAbout, "Kiro-Krew Version Information", m.aboutDialog.GetFullContent())
This should be changed to:
m = m.activateOverlay(overlayAbout, "Elasticache Krew Version Information", m.aboutDialog.GetFullContent())
Problem Statement
The about dialog currently displays "Kiro-Krew Version Information" as its title. This needs to be updated to reflect "Elasticache Krew" branding.
User Story
As a user, when I run the
aboutcommand in the REPL, I should see "Elasticache Krew Version Information" as the dialog title instead of "Kiro-Krew Version Information".Acceptance Criteria
/internal/tui/commands.goat line 422 in thehandleAbout()functionContext
The title string is passed to
activateOverlay()in thehandleAbout()function:This should be changed to: