update white label property names to match cloud

This commit is contained in:
Francis Cao
2026-02-27 21:41:53 -08:00
parent b5f91f11f0
commit 6002ff56bf
3 changed files with 10 additions and 10 deletions
@@ -9,7 +9,7 @@ import { ReplayPlayer } from './ReplayPlayer';
export function ReplayPlayback({ websiteId, sessionId }: { websiteId: string; sessionId: string }) { export function ReplayPlayback({ websiteId, sessionId }: { websiteId: string; sessionId: string }) {
const { data: replay, isLoading, error } = useReplayQuery(websiteId, sessionId); const { data: replay, isLoading, error } = useReplayQuery(websiteId, sessionId);
const { data: session } = useWebsiteSessionQuery(websiteId, sessionId); const { data: session } = useWebsiteSessionQuery(websiteId, sessionId);
const { formatMessage, labels } = useMessages(); const { t, labels } = useMessages();
return ( return (
<LoadingPanel <LoadingPanel
@@ -25,9 +25,9 @@ export function ReplayPlayback({ websiteId, sessionId }: { websiteId: string; se
<Row alignItems="center" gap="4"> <Row alignItems="center" gap="4">
<Avatar seed={sessionId} size={48} /> <Avatar seed={sessionId} size={48} />
<Column> <Column>
<Text weight="bold">{formatMessage(labels.replay)}</Text> <Text weight="bold">{t(labels.replay)}</Text>
<Text color="muted"> <Text color="muted">
{replay.eventCount} {formatMessage(labels.events).toLowerCase()} {replay.eventCount} {t(labels.events).toLowerCase()}
</Text> </Text>
</Column> </Column>
</Row> </Row>
@@ -20,9 +20,9 @@ export function ShareNav({
const { pathname } = useNavigation(); const { pathname } = useNavigation();
const { slug, parameters, whiteLabel } = share; const { slug, parameters, whiteLabel } = share;
const logoUrl = whiteLabel?.url || 'https://umami.is'; const logoDomain = whiteLabel?.domainName || 'https://umami.is';
const logoName = whiteLabel?.name || 'umami'; const logoName = whiteLabel?.displayName || 'umami';
const logoImage = whiteLabel?.image; const logoImage = whiteLabel?.logoUrl;
const renderPath = (path: string) => `/share/${slug}${path}`; const renderPath = (path: string) => `/share/${slug}${path}`;
@@ -150,7 +150,7 @@ export function ShareNav({
> >
<Row as="header" gap alignItems="center" justifyContent="space-between"> <Row as="header" gap alignItems="center" justifyContent="space-between">
{!collapsed && ( {!collapsed && (
<a href={logoUrl} target="_blank" rel="noopener" style={{ marginLeft: 12 }}> <a href={logoDomain} target="_blank" rel="noopener" style={{ marginLeft: 12 }}>
<Row alignItems="center" gap> <Row alignItems="center" gap>
{logoImage ? ( {logoImage ? (
<img src={logoImage} alt={logoName} style={{ height: 24 }} /> <img src={logoImage} alt={logoName} style={{ height: 24 }} />
+3 -3
View File
@@ -178,7 +178,7 @@ export interface Board extends Omit<PrismaBoard, 'parameters'> {
} }
export interface WhiteLabel { export interface WhiteLabel {
name: string; displayName: string;
url: string; domainName: string;
image: string; logoUrl: string;
} }