-
Notifications
You must be signed in to change notification settings - Fork 883
fix(site): show wsproxy errors in context in WorkspaceProxyPage #11556
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
johnstcn
commented
Jan 10, 2024
•
edited
Loading
edited
- Shows the overall report error at the top of the page, if present.
- Shows workspaceproxy errors above warnings inside the corresponding element, if present.
{errors.map((error, i) => ( | ||
<span key={i}>{error}</span> | ||
))} | ||
{warnings.map((warning, i) => ( | ||
<span key={i}>{warning}</span> | ||
))} |
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.
I tried turning this into an <ul>
and playing around with list-style-type
to prefix these with 🚫 or
8cbb527
to
5c5e658
Compare
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.
Ship it!