fix(ui): fix for js errors widget styles
This commit is contained in:
parent
236ac05c92
commit
810e97605b
1 changed files with 2 additions and 2 deletions
|
|
@ -27,7 +27,7 @@ function ErrorListItem(props: Props) {
|
|||
// }
|
||||
return (
|
||||
<div
|
||||
className={ cn("border p-3 grid grid-cols-12 gap-4 cursor-pointer py-4 hover:bg-active-blue mb-3", className) }
|
||||
className={ cn("p-3 border-b grid grid-cols-12 gap-4 cursor-pointer py-4 hover:bg-active-blue", className) }
|
||||
id="error-item"
|
||||
onClick={props.onClick}
|
||||
>
|
||||
|
|
@ -89,4 +89,4 @@ const CustomTooltip = ({ active, payload, label }: any) => {
|
|||
}
|
||||
|
||||
return null;
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue