-
Notifications
You must be signed in to change notification settings - Fork 93
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
feat: update request body area #3441
base: feat/fluent-v9-upgrade
Are you sure you want to change the base?
Conversation
}); | ||
|
||
export function Auth() { | ||
const { auth: { authToken }, profile, dimensions: {request:{height}}} = useAppSelector((state) => state); |
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.
Use state values individually
}); | ||
|
||
const RequestHeaders = () => { | ||
const { sampleQuery, dimensions: { request: { height } } } = useAppSelector((state) => state); |
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.
Get state variables individually.
This is coming along well! I tested locally and everything looks great, really good stuff. I experienced a slight issue with resizing though. In some cases, I can resize up/down and when I release, I can't resize again. In other cases, I could not trigger a resize. See this: resizing-request-region.mp4 |
Ahh this is a nice catch, I'm going to test the resizing some more and fix the issue. |
|
||
|
||
interface IRequestProps { | ||
handleOnEditorChange: ()=> void |
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.
handleOnEditorChange: ()=> void | |
handleOnEditorChange: () => void |
Quality Gate failedFailed conditions |
Azure Static Web Apps: Your stage site is ready! Visit it here: https://jolly-sand-0ac78c710-3441.centralus.azurestaticapps.net |
Overview
Update request body, request header, modify permissions and access token tabs
Demo
Notes
Optional. Ancillary topics, caveats, alternative strategies that didn't work out, anything else.
Testing Instructions