containers / containers/podman.io
[Bug] "More PR Submission Details" Button on Community Page is a Dead Link
- Dominant language
- TypeScript
- Stars
- 108
- Forks
- 188
- Avg merge
- 6d 22h
- Merged PRs (30d)
- 12
Description
## Description
On the `/community` page, the **"More PR Submission Details"** button (located under the "If you find a new issue" section) appears interactive and has CSS hover effects, but clicking it does absolutely nothing.
## Root Cause
In `src/pages/community.tsx` (line 190), the `` component is missing the required `path` prop:
```tsx
// Current Broken Implementation
```
Because the `path` prop is omitted, the underlying `` tag evaluates to ``. Browsers treat an anchor tag without a destination as a placeholder — the CSS hover animations still trigger, but the click event is swallowed and nothing happens.
## Proposed Solution
The data object `submittingIssues[2].button` already contains the correct intended URL (`https://github.com/containers/podman/blob/main/CONTRIBUTING.md#submitting-pull-requests`).
The fix is a simple one-line change to pass the `path` prop into the Button component:
```diff
-
+
```
## Additional Context
This is a straightforward fix I'll open a quick PR to fix this!
Contributor guide
No contributing guide indexed for this repository
Research direction
Open src/pages/community.tsx around line 190 and inspect the Button usage under the “If you find a new issue” section, along with submittingIssues[2].button.path. Confirm the button receives that path and verify that the rendered link opens the intended CONTRIBUTING.md section.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- typescript
- Domain
- frontend
- Issue type
- Bug
- Difficulty
- 1/5
- Estimated time
- Under an hour
- Activity status
- Quiet
- Clarity
- Clearly specified
- Newbie friendliness
- 90/100