diff options
author | Julien Dessaux | 2025-01-31 20:53:29 +0100 |
---|---|---|
committer | Julien Dessaux | 2025-01-31 20:53:29 +0100 |
commit | ab548d249b56988823cc91fa46ad7bfff0d75250 (patch) | |
tree | bc2c5c5e480a462eab19d873382bf11abacdffbe /pkg/webui/state.go | |
parent | feat(webui): bootstrap account settings management with light and dark mode (diff) | |
download | tfstated-main.tar.gz tfstated-main.tar.bz2 tfstated-main.zip |
Diffstat (limited to '')
-rw-r--r-- | pkg/webui/state.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/webui/state.go b/pkg/webui/state.go index 141d2d8..2ad1597 100644 --- a/pkg/webui/state.go +++ b/pkg/webui/state.go @@ -15,7 +15,7 @@ func handleStateGET(db *database.DB) http.Handler { type StatesData struct { Page *Page State *model.State - Usernames map[int]string + Usernames map[string]string Versions []model.Version } return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { |