8000 fix: improve copy for tasks "starting" page by blink-so[bot] · Pull Request #18247 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

fix: improve copy for tasks "starting" page #18247

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

Merged
merged 1 commit into from
Jun 5, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
tasks: fix copy for "starting" page
Update the copy on the task starting page to be more user-friendly:
- Change "Building the workspace" to "Starting your workspace"
- Change "Your task will run as soon as the workspace is ready" to "This should take a few minutes"

Fixes #18164
  • Loading branch information
blink-so[bot] committed Jun 5, 2025
commit ace4946273ddffea31cd79d04831e34647074211
4 changes: 2 additions & 2 deletions site/src/pages/TaskPage/TaskPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ const TaskPage = () => {
<div className="flex flex-col items-center">
<Spinner loading className="mb-4" />
<h3 className="m-0 font-medium text-content-primary text-base">
Building the workspace
Starting your workspace
</h3>
<span className="text-content-secondary text-sm">
Your task will run as soon as the workspace is ready
This should take a few minutes
</span>
</div>
</div>
Expand Down
Loading
0