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 }) {
const { data: replay, isLoading, error } = useReplayQuery(websiteId, sessionId);
const { data: session } = useWebsiteSessionQuery(websiteId, sessionId);
const { formatMessage, labels } = useMessages();
const { t, labels } = useMessages();
return (
<LoadingPanel
@@ -25,9 +25,9 @@ export function ReplayPlayback({ websiteId, sessionId }: { websiteId: string; se
<Row alignItems="center" gap="4">
<Avatar seed={sessionId} size={48} />
<Column>
<Text weight="bold">{formatMessage(labels.replay)}</Text>
<Text weight="bold">{t(labels.replay)}</Text>
<Text color="muted">
{replay.eventCount} {formatMessage(labels.events).toLowerCase()}
{replay.eventCount} {t(labels.events).toLowerCase()}
</Text>
</Column>
</Row>
@@ -20,9 +20,9 @@ export function ShareNav({
const { pathname } = useNavigation();
const { slug, parameters, whiteLabel } = share;
const logoUrl = whiteLabel?.url || 'https://umami.is';
const logoName = whiteLabel?.name || 'umami';
const logoImage = whiteLabel?.image;
const logoDomain = whiteLabel?.domainName || 'https://umami.is';
const logoName = whiteLabel?.displayName || 'umami';
const logoImage = whiteLabel?.logoUrl;
const renderPath = (path: string) => `/share/${slug}${path}`;
@@ -150,7 +150,7 @@ export function ShareNav({
>
<Row as="header" gap alignItems="center" justifyContent="space-between">
{!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>
{logoImage ? (
<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 {
name: string;
url: string;
image: string;
displayName: string;
domainName: string;
logoUrl: string;
}