From 06f6107b89310175f959bda14e4766cd27ee6bbb Mon Sep 17 00:00:00 2001 From: Ash Keel Date: Mon, 24 Apr 2023 16:18:15 +0200 Subject: [PATCH] docs: update changelog --- CHANGELOG.md | 1 + frontend/src/ui/pages/TwitchSettings.tsx | 1 - twitch/client.go | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ab0388..6b28175 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - The UPDATE AVAILABLE banner in prerelease builds now works properly by only appearing when a newer prerelease (or stable) version is available to download. +- Numeric input boxes in the UI should now be less of a pain to use ## [3.1.5] - 2023-03-31 diff --git a/frontend/src/ui/pages/TwitchSettings.tsx b/frontend/src/ui/pages/TwitchSettings.tsx index 332597e..1814eac 100644 --- a/frontend/src/ui/pages/TwitchSettings.tsx +++ b/frontend/src/ui/pages/TwitchSettings.tsx @@ -162,7 +162,6 @@ function TwitchBotSettings() { /> - {' '} https://twitchapps.com/tmi/ diff --git a/twitch/client.go b/twitch/client.go index be3c7bf..1db309e 100644 --- a/twitch/client.go +++ b/twitch/client.go @@ -110,7 +110,7 @@ func NewManager(db *database.LocalDBClient, server *http.Server, logger *zap.Log manager.client.Bot = nil } - manager.client.logger.Info("reloaded/restarted Twitch bot") + manager.client.logger.Info("Reloaded/restarted Twitch bot") }) if err != nil { client.logger.Error("Could not setup twitch bot config reload subscription", zap.Error(err))