fix(ui): fix type
This commit is contained in:
parent
39bf333bc5
commit
808070c00e
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ function ConsoleRow(props: Props) {
|
|||
'cursor-pointer underline decoration-dotted decoration-gray-200': !!log.errorId,
|
||||
}
|
||||
)}
|
||||
onClick={clickable ? () => (!!log.errorId ? props.onClick() : toggleExpand()) : () => {}}
|
||||
onClick={clickable ? () => (!!log.errorId ? props.onClick() : toggleExpand()) : undefined}
|
||||
>
|
||||
<div className="mr-2">
|
||||
<Icon size="14" {...iconProps} />
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue