From 5c1dd94efbe648ea455c427be9a691116af5bc72 Mon Sep 17 00:00:00 2001 From: Ricky Stretch Date: Sun, 15 Mar 2026 11:41:51 -0400 Subject: [PATCH] v0.9.23 bug fixes --- .env.example | 2 +- backend/package.json | 2 +- build.sh | 2 +- frontend/package.json | 2 +- frontend/src/components/BrandingModal.jsx | 8 +++----- 5 files changed, 7 insertions(+), 9 deletions(-) diff --git a/.env.example b/.env.example index 12358c6..da6d418 100644 --- a/.env.example +++ b/.env.example @@ -10,7 +10,7 @@ PROJECT_NAME=jama # Image version to run (set by build.sh, or use 'latest') -JAMA_VERSION=0.9.22 +JAMA_VERSION=0.9.23 # App port — the host port Docker maps to the container PORT=3000 diff --git a/backend/package.json b/backend/package.json index 8b32f9c..74a7973 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "jama-backend", - "version": "0.9.22", + "version": "0.9.23", "description": "TeamChat backend server", "main": "src/index.js", "scripts": { diff --git a/build.sh b/build.sh index 48d87b5..6172330 100644 --- a/build.sh +++ b/build.sh @@ -13,7 +13,7 @@ # ───────────────────────────────────────────────────────────── set -euo pipefail -VERSION="${1:-0.9.22}" +VERSION="${1:-0.9.23}" ACTION="${2:-}" REGISTRY="${REGISTRY:-}" IMAGE_NAME="jama" diff --git a/frontend/package.json b/frontend/package.json index 80ffa3d..8eb0a66 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "jama-frontend", - "version": "0.9.22", + "version": "0.9.23", "private": true, "scripts": { "dev": "vite", diff --git a/frontend/src/components/BrandingModal.jsx b/frontend/src/components/BrandingModal.jsx index a66e8f2..fee7846 100644 --- a/frontend/src/components/BrandingModal.jsx +++ b/frontend/src/components/BrandingModal.jsx @@ -13,7 +13,7 @@ const COLOUR_SUGGESTIONS = [ // ── Title Colour Row — one row per mode ────────────────────────────────────── -function TitleColourRow({ bgColor, bgLabel, textColor, appName, onChange }) { +function TitleColourRow({ bgColor, bgLabel, textColor, onChange }) { const [mode, setMode] = useState('idle'); // 'idle' | 'custom' return ( @@ -25,8 +25,8 @@ function TitleColourRow({ bgColor, bgLabel, textColor, appName, onChange }) { border: '1px solid var(--border)', minWidth: 110, flexShrink: 0, boxShadow: '0 1px 4px rgba(0,0,0,0.1)', }}> - - {appName || 'ATC'} + + Title @@ -505,14 +505,12 @@ export default function BrandingModal({ onClose }) { bgColor="#f1f3f4" bgLabel="Light mode" textColor={colourTitle} - appName={appName} onChange={setColourTitle} />