fix: replace discord references with forum#408
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (2)
📝 WalkthroughWalkthroughReplaced references to Discord with Plane Forum links/icons across documentation and site config; adjusted one analogy wording to use "workspace in Slack." Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~8 minutes Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches
🧪 Generate unit tests (beta)
📝 Coding Plan
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🧹 Nitpick comments (1)
docs/.vitepress/config.ts (1)
197-200: Add an explicit accessibility label to the custom social link.VitePress supports custom SVG icons in
socialLinks, and its docs recommend providingariaLabelfor accessibility; the example SVG also includesrole="img"and a<title>. AddingariaLabel: "Plane Forum"here would make the link’s accessible name explicit. (vitepress.dev)Suggested tweak
socialLinks: [ { icon: "github", link: "https://github.com/makeplane/plane" }, - { icon: { svg: '<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14 9a2 2 0 0 1-2 2H6l-4 4V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2z"/><path d="M18 9h2a2 2 0 0 1 2 2v11l-4-4h-6a2 2 0 0 1-2-2v-1"/></svg>' }, link: "https://forum.plane.so" }, + { + icon: { + svg: '<svg role="img" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><title>Plane Forum</title><path d="M14 9a2 2 0 0 1-2 2H6l-4 4V4a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2z"/><path d="M18 9h2a2 2 0 0 1 2 2v11l-4-4h-6a2 2 0 0 1-2-2v-1"/></svg>', + }, + link: "https://forum.plane.so", + ariaLabel: "Plane Forum", + }, { icon: "twitter", link: "https://twitter.com/planepowers" },🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@docs/.vitepress/config.ts` around lines 197 - 200, The custom social link inside the socialLinks array (the object with icon: { svg: '...'} and link: "https://forum.plane.so") needs an explicit accessible name; add ariaLabel: "Plane Forum" to that object and also include role="img" and a <title>Plane Forum</title> inside the SVG string so screen readers get a proper description; update the socialLinks entry accordingly to include ariaLabel and the modified SVG.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@docs/core-concepts/workspaces/overview.md`:
- Line 10: Replace the phrase "an organization in Slack" with "a workspace in
Slack" in the sentence that begins "Picture it like this. A Workspace in Plane
is similar to an organization in Slack." so the analogy is accurate; update the
surrounding sentence to read something like "A Workspace in Plane is similar to
a workspace in Slack." and keep the rest of the paragraph unchanged to preserve
tone and examples.
---
Nitpick comments:
In `@docs/.vitepress/config.ts`:
- Around line 197-200: The custom social link inside the socialLinks array (the
object with icon: { svg: '...'} and link: "https://forum.plane.so") needs an
explicit accessible name; add ariaLabel: "Plane Forum" to that object and also
include role="img" and a <title>Plane Forum</title> inside the SVG string so
screen readers get a proper description; update the socialLinks entry
accordingly to include ariaLabel and the modified SVG.
ℹ️ Review info
⚙️ Run configuration
Configuration used: defaults
Review profile: CHILL
Plan: Pro
Run ID: 2432b663-2007-41ff-8b10-bd500775fb2c
📒 Files selected for processing (4)
CONTRIBUTING.mddocs/.vitepress/config.tsdocs/core-concepts/workspaces/overview.mddocs/support/get-help.md
Summary by CodeRabbit