fix pointer events on review grid (#9998)

This commit is contained in:
Josh Hawkins 2024-02-23 09:30:18 -06:00 committed by GitHub
parent 7d18c2c03d
commit de3a6a8738
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -280,7 +280,7 @@ export default function DesktopEventView({
</div>
)}
<div className="w-full mr-4 md:grid md:grid-cols-3 3xl:grid-cols-4 gap-4 overflow-y-auto no-scrollbar">
<div className="w-full mr-4 md:grid md:grid-cols-3 3xl:grid-cols-4 gap-4 overflow-y-auto no-scrollbar pointer-events-none">
{currentItems ? (
currentItems.map((value, segIdx) => {
const lastRow = segIdx == reviewItems[severity].length - 1;