Merge pull request #1920 from benphelps/fix/ping-blocks-link

Fix: remove pointer events on ping div
pull/1929/head
shamoon 9 months ago committed by GitHub
commit a061eccef5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -76,7 +76,7 @@ export default function Item({ service, group }) {
</div>
)}
<div className="absolute top-0 right-0 w-1/2 flex flex-row justify-end gap-2 mr-2 z-30">
<div className="absolute top-0 right-0 w-1/2 flex flex-row justify-end gap-2 mr-2 z-30 pointer-events-none">
{service.ping && (
<div className="flex-shrink-0 flex items-center justify-center cursor-pointer">
<Ping group={group} service={service.name} />

Loading…
Cancel
Save