v0.11.2 fixed broken drawer links
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "jama-backend",
|
"name": "jama-backend",
|
||||||
"version": "0.11.1",
|
"version": "0.11.2",
|
||||||
"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.11.1}"
|
VERSION="${1:-0.11.2}"
|
||||||
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.11.1",
|
"version": "0.11.2",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
@@ -398,16 +398,19 @@ export default function Chat() {
|
|||||||
onMessages={() => { setDrawerOpen(false); setPage('chat'); }}
|
onMessages={() => { setDrawerOpen(false); setPage('chat'); }}
|
||||||
onSchedule={() => { setDrawerOpen(false); setPage('schedule'); }}
|
onSchedule={() => { setDrawerOpen(false); setPage('schedule'); }}
|
||||||
onScheduleManager={() => { setDrawerOpen(false); setPage('schedule'); }}
|
onScheduleManager={() => { setDrawerOpen(false); setPage('schedule'); }}
|
||||||
onGroupManager={() => { setDrawerOpen(false); if(isMobile) setModal('mobilegroupmanager'); else setModal('groupmanager'); }}
|
onGroupManager={() => { setDrawerOpen(false); setPage('groups'); }}
|
||||||
onBranding={() => { setDrawerOpen(false); setModal('branding'); }}
|
onBranding={() => { setDrawerOpen(false); setModal('branding'); }}
|
||||||
onSettings={() => { setDrawerOpen(false); setModal('settings'); }}
|
onSettings={() => { setDrawerOpen(false); setModal('settings'); }}
|
||||||
onUsers={() => { setDrawerOpen(false); setModal('users'); }}
|
onUsers={() => { setDrawerOpen(false); setPage('users'); }}
|
||||||
onHostPanel={() => { setDrawerOpen(false); setPage('hostpanel'); }}
|
onHostPanel={() => { setDrawerOpen(false); setPage('hostpanel'); }}
|
||||||
features={features}
|
features={features}
|
||||||
currentPage={page}
|
currentPage={page}
|
||||||
isMobile={isMobile} />
|
isMobile={isMobile} />
|
||||||
{modal === 'profile' && <ProfileModal onClose={() => setModal(null)} />}
|
{modal === 'profile' && <ProfileModal onClose={() => setModal(null)} />}
|
||||||
{modal === 'settings' && <SettingsModal onClose={() => setModal(null)} onFeaturesChanged={setFeatures} />}
|
{modal === 'settings' && <SettingsModal onClose={() => setModal(null)} onFeaturesChanged={setFeatures} />}
|
||||||
|
{modal === 'branding' && <BrandingModal onClose={() => setModal(null)} />}
|
||||||
|
{modal === 'help' && <HelpModal onClose={() => setModal(null)} dismissed={helpDismissed} />}
|
||||||
|
{modal === 'about' && <AboutModal onClose={() => setModal(null)} />}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user