fix: "Go to Project" button not clickable for some project cards#590
fix: "Go to Project" button not clickable for some project cards#590Khy9 wants to merge 1 commit into
Conversation
|
I noticed a similar PR was opened. Happy to make any changes or improvements if needed. |
|
I tested this locally. It builds, but this looks like a workaround rather than a fix for the Go-to-Project issue. Checks run:
Main concern: this disables The Also, please remove the generated |
Fix: "Go to Project" button not clickable on certain cards
Problem
The "Go to Project" button was not clickable for some project cards (activist.org, CircuitVerse, Opensourcedesign).
Cause
These cards had
loadIssues: true, which rendered the IssueList component. This component overlapped the bottom section of the card, blocking interaction with the project link.Fix
Disabled
loadIssuesfor the affected entries to restore expected click behavior.Notes
A more complete fix could involve adjusting the layout or z-index of the IssueList component to prevent overlap.