fix(ui): fix for js errors widget styles

This commit is contained in:
sylenien 2022-06-24 17:20:16 +02:00
parent 236ac05c92
commit 810e97605b

View file

@ -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;
};
};