8000 fix(site): fix typo on new workspace screen by ethanndickson · Pull Request #16099 · coder/coder · GitHub
[go: up one dir, main page]

Skip to content

fix(site): fix typo on new workspace screen #16099

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
Jan 13, 2025
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion site/src/components/Form/Form.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const meta: Meta<typeof Form> = {
children: (
<FormSection
title="General"
description="The name of the workspace and its owner. Only admins can create workspace for other users."
description="The name of the workspace and its owner. Only admins can create workspaces for other users."
>
<FormFields>
<TextField label="Workspace Name" />
Expand Down
6700
Original file line numberDiff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export const CreateWorkspacePageView: FC<CreateWorkspacePageViewProps> = ({
title="General"
description={
permissions.createWorkspaceForUser
? "The name of the workspace and its owner. Only admins can create workspace for other users."
? "The name of the workspace and its owner. Only admins can create workspaces for other users."
: "The name of your new workspace."
}
>
Expand Down
Loading
0