We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 939473b commit 6e6b6e2Copy full SHA for 6e6b6e2
1 file changed
src/components/ChangelogDialog/ChangelogDialog.tsx
@@ -29,6 +29,7 @@ export interface ChangelogDialogProps {
29
loading?: boolean;
30
error?: boolean | {title: string; description: string};
31
disableHeightTransition?: boolean;
32
+ className?: string;
33
}
34
35
let nextId = 1;
@@ -50,14 +51,15 @@ export function ChangelogDialog({
50
51
onRetryClick,
52
loading,
53
error,
54
+ className,
55
}: ChangelogDialogProps) {
56
const idRef = React.useRef<number>();
57
idRef.current = idRef.current || getNextId();
58
const dialogCaptionId = `changelog-dialog-title-${idRef.current}`;
59
60
return (
61
<Dialog
- className={b()}
62
+ className={b(null, className)}
63
open={open}
64
onClose={onClose}
65
disableBodyScrollLock={disableBodyScrollLock}
0 commit comments