Title: Update Label to “View details on Wikidata”
Domain: Design (Frontend)
Difficulty: Beginner
Steps:
- Identify the button in the UI.
- Change text.
- Confirm alignment and styling.
Expected outcome: Updated and clearer label.
Title: Update Label to “View details on Wikidata”
Domain: Design (Frontend)
Difficulty: Beginner
Steps:
Expected outcome: Updated and clearer label.
Updated the button label from "View details" to "View details on Wikidata" to provide clearer context about where the link directs users.
jsx
{caseItem.articleUrl && (
<div className="case-card-footer">
<a
href={caseItem.articleUrl}
target="_blank"
rel="noopener noreferrer"
className="external-link"
>
<i className="fas fa-external-link-alt"></i>
<span>View details</span>
</a>
</div>
)}jsx
{caseItem.articleUrl && (
<div className="case-card-footer">
<a
href={caseItem.articleUrl}
target="_blank"
rel="noopener noreferrer"
className="external-link"
>
<i className="fas fa-external-link-alt"></i>
<span>View details on Wikidata</span>
</a>
</div>
)}Changed only the button text from View details to View details on Wikidata to clearly indicate the destination platform. No styling, sizing, or functionality was modified - only the label text was updated for better user clarity.
Thank you for your contribution.
I have reviewed the submitted work and confirmed the following:
✔️ Task requirements have been addressed
✔️ Work aligns with the current project scope
✔️ Evidence (links/screenshots/PR) is sufficient for audit purposes
✔️ No overlap or conflict with other assigned tasks
✔️ Contribution follows the agreed workflow and guidelines
This task is now approved and resolved.
📌 Next step for contributor:
Please proceed to fill the official contribution submission form using this task ID to complete your participation record.
Thank you for your effort and collaboration 🙌
Task resolved.
— Ali (SCC Mentor / Reviewer)