Skip to content

fix: clarify language in orphan section of delete modal #10764

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 5 commits into from
Nov 20, 2023
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
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const styles = {
color: theme.palette.text.primary,
},
}),
orphanContainer: () => ({
orphanContainer: (theme) => ({
marginTop: 24,
display: "flex",
backgroundColor: colors.orange[15],
Expand All @@ -57,6 +57,7 @@ const styles = {
"& .info": {
fontSize: 14,
fontWeight: 600,
color: theme.experimental.roles.danger.text,
},
}),
} satisfies Record<string, Interpolation<Theme>>;
Expand Down Expand Up @@ -166,10 +167,11 @@ export const WorkspaceDeleteDialog = (props: WorkspaceDeleteDialogProps) => {
/>
</div>
<div css={{ flexDirection: "column" }}>
<p className="info">Orphan resources</p>
<p className="info">Orphan Resources</p>
<span css={{ fontSize: 12, marginTop: 4, display: "block" }}>
Skip resource cleanup. Resources such as volumes and virtual
machines will not be destroyed.&nbsp;
As a Template Admin, you may skip resource cleanup to force
remove a failed workspace. Resources such as volumes and
virtual machines will not be destroyed.&nbsp;
<Link
href={docs("/workspaces#workspace-resources")}
target="_blank"
Expand Down