We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19fb636 commit d601b6eCopy full SHA for d601b6e
packages/ui-components/Common/ChangeHistory/index.tsx
@@ -17,11 +17,11 @@ const ChangeHistory: FC<ChangeHistoryProps> = ({
17
label = 'History',
18
changes = [],
19
align = 'right',
20
- className = '',
+ className,
21
'aria-label': ariaLabel = label,
22
...props
23
}) => (
24
- <div className={`${styles.changeHistory} ${className}`} {...props}>
+ <div className={`${styles.changeHistory} ${className ?? ''}`} {...props}>
25
{changes.length > 0 ? (
26
<details className="group">
27
<summary className={styles.summary} role="button" aria-haspopup="menu">
0 commit comments