-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Separate tabs for Errors and Warnings in error overlay #4001
Separate tabs for Errors and Warnings in error overlay #4001
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
8 Ignored Deployments
|
Current dependencies on/for this PR: This comment was auto-generated by Graphite. |
🟢 CI successful 🟢Thanks |
[TabId.TurbopackWarnings]: turbopackWarnings.length > 0, | ||
[TabId.RuntimeErrors]: hasErrors, | ||
}[tabId]) | ||
)[0] ?? TabId.RuntimeErrors; |
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.
)[0] ?? TabId.RuntimeErrors; | |
)[0]; |
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.
didn't want it to be nullable
if (defaultTab === TabId.TurbopackErrors) { | ||
setSelectedTab(TabId.TurbopackErrors); |
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.
if (defaultTab === TabId.TurbopackErrors) { | |
setSelectedTab(TabId.TurbopackErrors); | |
if (defaultTab) { | |
setSelectedTab(defaultTab ); |
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.
This is here to switch to the turbopack error tab if those appear later on, but I'm not sure if it's a good idea to have
9491ff5
to
d789050
Compare
d789050
to
362b867
Compare
223b93d
to
c6f75f4
Compare
c6f75f4
to
893502d
Compare
Benchmark for 6a263b6
Click to view full benchmark
|
## Bugfixes - vercel/turborepo#3526 - vercel/turborepo#4084 - vercel/turborepo#4083 - vercel/turborepo#4067 - vercel/turborepo#3959 - vercel/turborepo#4060 - vercel/turborepo#4081 - vercel/turborepo#4103 - vercel/turborepo#4100 - vercel/turborepo#4108 - vercel/turborepo#4101 - vercel/turborepo#4112 - vercel/turborepo#3956 - vercel/turborepo#4118 - vercel/turborepo#4117 ## Feature - vercel/turborepo#4058 - vercel/turborepo#4013 - vercel/turborepo#4005 - vercel/turborepo#4001 - vercel/turborepo#3839 - vercel/turborepo#4017 - vercel/turborepo#4086 - vercel/turborepo#4067 ## Performance - vercel/turborepo#4040 - vercel/turborepo#4110 ## Refactor - vercel/turborepo#4098
No description provided.