diff --git a/CHANGELOG.md b/CHANGELOG.md index 2be074f..df993ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,8 @@ Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); version - The panel's **Account** entry is now called **Settings** — nav link, page heading, and browser title. The route stays `/account`, so existing links and bookmarks are unaffected. +- The signed-in name in the panel's nav is now labelled `User:`, so it reads as + the current account rather than as a stray word above the Settings link. ### Fixed diff --git a/internal/web/templates/layout.html b/internal/web/templates/layout.html index 2b8eca2..8cdaed5 100644 --- a/internal/web/templates/layout.html +++ b/internal/web/templates/layout.html @@ -69,7 +69,7 @@ {{template "sections" .}}
- {{.User}} + User: {{.User}} {{if eq .Active "account"}}{{template "icon-account"}}Settings{{else}}{{template "icon-account"}}Settings{{end}}