Skip to content

Commit

Permalink
🐛 TOFU popup has question mark now
Browse files Browse the repository at this point in the history
  • Loading branch information
makew0rld committed Jul 2, 2020
1 parent 61e54f4 commit d2c8231
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Selected link URL is displayed in the bottom bar (#24)
- Pressing <kbd>Ctrl-T</kbd> with a link selected opens it in a new tab (#27)
- Writing `new:N` in the bottom bar will open link number N in a new tab (#27)
- Quote lines are now in italics (#28)

### Changed
- Bottom bar now says `URL/Num./Search: ` when space is pressed
Expand All @@ -30,6 +31,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Reloading the new tab page doesn't cause an error popup
- Help table cells are hardwrapped so the text can still be read entirely on an 80-column terminal
- New tab text is wrapped to terminal width like other pages (#31)
- TOFU "continue anyway" popup has a question mark at the end

## [1.1.0] - 2020-06-24
### Added
Expand Down
2 changes: 1 addition & 1 deletion display/modals.go
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ func Tofu(host string) bool {
yesNoModal.SetBackgroundColor(tcell.ColorBlack)
}
yesNoModal.SetText(
fmt.Sprintf("%s's certificate has changed, possibly indicating an security issue. Are you sure you want to continue?", host),
fmt.Sprintf("%s's certificate has changed, possibly indicating an security issue. Are you sure you want to continue? ", host),
)
tabPages.ShowPage("yesno")
tabPages.SendToFront("yesno")
Expand Down

0 comments on commit d2c8231

Please sign in to comment.