v0.9.23 bug fixes
This commit is contained in:
@@ -10,7 +10,7 @@
|
|||||||
PROJECT_NAME=jama
|
PROJECT_NAME=jama
|
||||||
|
|
||||||
# Image version to run (set by build.sh, or use 'latest')
|
# 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
|
# App port — the host port Docker maps to the container
|
||||||
PORT=3000
|
PORT=3000
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "jama-backend",
|
"name": "jama-backend",
|
||||||
"version": "0.9.22",
|
"version": "0.9.23",
|
||||||
"description": "TeamChat backend server",
|
"description": "TeamChat backend server",
|
||||||
"main": "src/index.js",
|
"main": "src/index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|||||||
2
build.sh
2
build.sh
@@ -13,7 +13,7 @@
|
|||||||
# ─────────────────────────────────────────────────────────────
|
# ─────────────────────────────────────────────────────────────
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
VERSION="${1:-0.9.22}"
|
VERSION="${1:-0.9.23}"
|
||||||
ACTION="${2:-}"
|
ACTION="${2:-}"
|
||||||
REGISTRY="${REGISTRY:-}"
|
REGISTRY="${REGISTRY:-}"
|
||||||
IMAGE_NAME="jama"
|
IMAGE_NAME="jama"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "jama-frontend",
|
"name": "jama-frontend",
|
||||||
"version": "0.9.22",
|
"version": "0.9.23",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ const COLOUR_SUGGESTIONS = [
|
|||||||
|
|
||||||
// ── Title Colour Row — one row per mode ──────────────────────────────────────
|
// ── 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'
|
const [mode, setMode] = useState('idle'); // 'idle' | 'custom'
|
||||||
|
|
||||||
return (
|
return (
|
||||||
@@ -25,8 +25,8 @@ function TitleColourRow({ bgColor, bgLabel, textColor, appName, onChange }) {
|
|||||||
border: '1px solid var(--border)', minWidth: 110, flexShrink: 0,
|
border: '1px solid var(--border)', minWidth: 110, flexShrink: 0,
|
||||||
boxShadow: '0 1px 4px rgba(0,0,0,0.1)',
|
boxShadow: '0 1px 4px rgba(0,0,0,0.1)',
|
||||||
}}>
|
}}>
|
||||||
<span style={{ color: textColor, fontWeight: 700, fontSize: 16, whiteSpace: 'nowrap' }}>
|
<span style={{ color: textColor, fontWeight: 700, fontSize: 16 }}>
|
||||||
{appName || 'ATC'}
|
Title
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -505,14 +505,12 @@ export default function BrandingModal({ onClose }) {
|
|||||||
bgColor="#f1f3f4"
|
bgColor="#f1f3f4"
|
||||||
bgLabel="Light mode"
|
bgLabel="Light mode"
|
||||||
textColor={colourTitle}
|
textColor={colourTitle}
|
||||||
appName={appName}
|
|
||||||
onChange={setColourTitle}
|
onChange={setColourTitle}
|
||||||
/>
|
/>
|
||||||
<TitleColourRow
|
<TitleColourRow
|
||||||
bgColor="#13131f"
|
bgColor="#13131f"
|
||||||
bgLabel="Dark mode"
|
bgLabel="Dark mode"
|
||||||
textColor={colourTitleDark}
|
textColor={colourTitleDark}
|
||||||
appName={appName}
|
|
||||||
onChange={setColourTitleDark}
|
onChange={setColourTitleDark}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user