-
Notifications
You must be signed in to change notification settings - Fork 7
Add 'powered by kapa.ai' #322
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
✅ Deploy Preview for docs-ui ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
📝 WalkthroughWalkthroughA new paragraph element containing a "Powered by Kapa" hyperlink pointing to "https://kapa.ai" was added to the disclaimer section in the footer of the chat interface component. The link is configured to open in a new tab with security attributes. No other changes to component structure, logic, or exports were made. Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Assessment against linked issues
Note ⚡️ Unit Test Generation is now available in beta!Learn more here, or try it out under "Finishing Touches" below. ✨ Finishing Touches
🧪 Generate unit tests
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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 0
🧹 Nitpick comments (1)
src/js/react/components/ChatInterface.jsx (1)
533-546
: Alignrel
attribute usage across external links for consistency & securityThe new Kapa attribution link correctly adds
rel="noopener noreferrer"
, whereas the preceding privacy-policy link only specifiesnoopener
. From a security standpoint, includingnoreferrer
on alltarget="_blank"
links prevents the new page from accessingwindow.opener
and also strips theReferer
header—best practice for untrusted domains. Aligning both links avoids subtle discrepancies and keeps maintenance straightforward.- <a - href="https://www.redpanda.com/legal/privacy-policy" - target="_blank" - rel="noopener" + <a + href="https://www.redpanda.com/legal/privacy-policy" + target="_blank" + rel="noopener noreferrer" >
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
src/js/react/components/ChatInterface.jsx
(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
- GitHub Check: build
This pull request makes a small change to the
ChatInterface
component by adding a "Powered by kapa.ai" attribution below the existing content.See https://docs.kapa.ai/dev/sdk/#attribution-requirement