There was an error while loading. Please reload this page.
1 parent 4603828 commit 64510f7Copy full SHA for 64510f7
src/web-check-live/components/Form/Row.tsx
@@ -151,7 +151,7 @@ export const ExpandableRow = (props: RowProps) => {
151
return (
152
<StyledRow as="li" key={`${row.lbl}-${index}`}>
153
<span className="lbl" title={row.title?.toString()}>{row.lbl}</span>
154
- <span className="val" title={row.val} onClick={() => copyToClipboard(row.val)}>
+ <span className="val" title={row.val?.toString()} onClick={() => copyToClipboard(row.val)}>
155
{formatValue(row.val)}
156
</span>
157
{ row.plaintext && <PlainText>{row.plaintext}</PlainText> }
0 commit comments