-
-
Notifications
You must be signed in to change notification settings - Fork 126
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
fix: corrected anchor tags href in Playground sidebar #859
fix: corrected anchor tags href in Playground sidebar #859
Conversation
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.
Welcome to AsyncAPI. Thanks a lot for creating your first pull request. Please check out our contributors guide useful for opening a pull request.
Keep in mind there are also other channels you can use to interact with AsyncAPI community. For more details check out this issue.
This doesn't appear to fix the problem correctly. You're adding a new anchor instead of fixing the existing anchor with the format: |
@Santhoshmani1 please have a look at comment from @BTOdell |
Quality Gate passedKudos, no new issues were introduced! 0 New issues |
Async.API.playground.links.corrected.mp4I have changed the href attribute of sidebar links and added the id attribute to match in the operations. It's working correctly as expected and fixes the problem. |
@@ -360,7 +360,7 @@ const OperationsList: React.FunctionComponent = () => { | |||
interface OperationItemProps { | |||
channelName: string; | |||
summary: string; | |||
kind: 'publish' | 'subscribe'; | |||
kind: 'subscribe' | 'publish'; |
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.
why is this change needed?
@Santhoshmani1, I just wanted to say thank you for the contribution 🚀 |
@Santhoshmani1 you do not want to continue with this one? |
Description
Changes proposed in this pull request:
Related issue(s)
Fixes