From ab301c8305306cc4d18f4c1ff235750b6533fd5c Mon Sep 17 00:00:00 2001 From: qbit982 Date: Wed, 22 Oct 2025 17:55:13 +0300 Subject: [PATCH 1/2] feat(ChangelogDialog): add classname --- src/components/ChangelogDialog/ChangelogDialog.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/ChangelogDialog/ChangelogDialog.tsx b/src/components/ChangelogDialog/ChangelogDialog.tsx index a57c212c..0e07a114 100644 --- a/src/components/ChangelogDialog/ChangelogDialog.tsx +++ b/src/components/ChangelogDialog/ChangelogDialog.tsx @@ -29,6 +29,7 @@ export interface ChangelogDialogProps { loading?: boolean; error?: boolean | {title: string; description: string}; disableHeightTransition?: boolean; + containerClassName?: string; } let nextId = 1; @@ -50,6 +51,7 @@ export function ChangelogDialog({ onRetryClick, loading, error, + containerClassName, }: ChangelogDialogProps) { const idRef = React.useRef(); idRef.current = idRef.current || getNextId(); @@ -57,7 +59,7 @@ export function ChangelogDialog({ return ( Date: Wed, 22 Oct 2025 17:56:47 +0300 Subject: [PATCH 2/2] feat(ChangelogDialog): add classname --- src/components/ChangelogDialog/ChangelogDialog.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/ChangelogDialog/ChangelogDialog.tsx b/src/components/ChangelogDialog/ChangelogDialog.tsx index 0e07a114..463e79b8 100644 --- a/src/components/ChangelogDialog/ChangelogDialog.tsx +++ b/src/components/ChangelogDialog/ChangelogDialog.tsx @@ -29,7 +29,7 @@ export interface ChangelogDialogProps { loading?: boolean; error?: boolean | {title: string; description: string}; disableHeightTransition?: boolean; - containerClassName?: string; + className?: string; } let nextId = 1; @@ -51,7 +51,7 @@ export function ChangelogDialog({ onRetryClick, loading, error, - containerClassName, + className, }: ChangelogDialogProps) { const idRef = React.useRef(); idRef.current = idRef.current || getNextId(); @@ -59,7 +59,7 @@ export function ChangelogDialog({ return (