- Notifications
You must be signed in to change notification settings - Fork1k
feat: redesign tasks page to match AI tools#19962
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
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.
code looks fine, but are we really getting rid of the navbar?
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.
Looking snazzy. Had the same comment about the navbar, seems hard to get back to the rest of Coder.
onValueChange={(value)=>setSelectedTemplateId(value)} | ||
onValueChange={(value)=>{ | ||
setSelectedTemplateId(value); | ||
setSelectedPresetId(undefined); |
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.
The PR and commit only mentions a redesign, was this a bugfix?
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.
Yes, a minor one 👍
code-asherSep 26, 2025 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
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.
kk just fyi I did not validate this fix since idk what the bug was
> | ||
Preset | ||
</label> | ||
{isLoadingPresets ?( |
code-asherSep 25, 2025 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
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.
It seems this block is never entered since it is nested under thepresets
check now.
On the first fetch,presets
is undefined so we never show the loading skeleton.
On subsequent fetches, it seems thatisLoadingPresets
is still false because there is cached data (seems weird to me, but I guess that is how it works).
So I think we can either delete the loader, or we need to move it so it is no longer nested under thepresets
check like it was before.
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.
Good catch! Removing it.
One other comment, could be nice to have a story for when the preset has a prompt defined, to see the readonly prompt behavior. |
@aslilac Yes, we are—for now.
I had forgotten to add a link in the Coder logo to return to the home page, but that’s fixed now.
Good catch! I’ve added it. |
aslilac left a comment• edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
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.
approving because you said "for now" and it's still an experiment. I think we're definitely gonna need to iron out the navigation situation before this stabilizes. can we make sure there's an issue open to track that?
This navigation is similar to what we have in the template editor. Since users can now return home by clicking the Coder logo, I think it should be fine. I’d only open an issue if we receive consistent feedback—does that make sense? That said, if you feel strongly about the navigation, I can definitely open an issue. I’d appreciate your help describing the pain points you’re experiencing or that you think users might face. |
89339f6
intomainUh oh!
There was an error while loading.Please reload this page.
Demo: