From 462f3ef51ab44193696fd939597bd43102d03ac5 Mon Sep 17 00:00:00 2001 From: Trochonovitz Date: Tue, 12 May 2026 12:09:43 +0200 Subject: [PATCH 1/3] fix: replace wrong label for description profanity toggler setting --- admin/src/pages/Settings/index.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/admin/src/pages/Settings/index.tsx b/admin/src/pages/Settings/index.tsx index ac7a2b51..06f59367 100644 --- a/admin/src/pages/Settings/index.tsx +++ b/admin/src/pages/Settings/index.tsx @@ -117,7 +117,7 @@ const Settings = () => { )} - /> + /> {isRestartRequired && ( @@ -283,9 +283,9 @@ const Settings = () => { - - - {getMessage('page.settings.form.enabledCollections.label')} + + + {getMessage('page.settings.form.badWords.label')} Date: Tue, 12 May 2026 12:11:22 +0200 Subject: [PATCH 2/3] fix: add TS assertion for border color type --- admin/src/components/StatusBadge/index.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/admin/src/components/StatusBadge/index.tsx b/admin/src/components/StatusBadge/index.tsx index 4d9ae5ba..4fff63a6 100644 --- a/admin/src/components/StatusBadge/index.tsx +++ b/admin/src/components/StatusBadge/index.tsx @@ -4,8 +4,7 @@ import styled from 'styled-components'; export const StatusBadgeStyled = styled(Badge)` padding: 5px 8px; - border: 1px ${({ theme, color }) => theme.colors[`${color}200`]} solid; - + border: 1px ${({ theme, color }) => theme.colors[`${color}200` as keyof typeof theme.colors]} solid; overflow: hidden; text-overflow: ellipsis; From 93c60e849cf30ff2211b2192c8d2275549f71c06 Mon Sep 17 00:00:00 2001 From: Trochonovitz Date: Tue, 12 May 2026 12:15:55 +0200 Subject: [PATCH 3/3] fix: remove unnecessary space before closing tag --- admin/src/pages/Settings/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/src/pages/Settings/index.tsx b/admin/src/pages/Settings/index.tsx index 06f59367..06af52e1 100644 --- a/admin/src/pages/Settings/index.tsx +++ b/admin/src/pages/Settings/index.tsx @@ -117,7 +117,7 @@ const Settings = () => { )} - /> + /> {isRestartRequired && (