mirror of
https://github.com/coder/coder.git
synced 2025-07-23 21:32:07 +00:00
chore: remove references to restarting/stopping in update workspace language (#13852)
* chore: remove references to restarting/stopping in update workspace language * reword updating workspaces to remove the word "restart" * fix batch wording
This commit is contained in:
@ -151,13 +151,11 @@ manually updated the workspace.
|
||||
## Updating workspaces
|
||||
|
||||
After updating the default version of the template that a workspace was created
|
||||
from, you can update the workspace.
|
||||
from, you can update the workspace. Coder will start the workspace with said
|
||||
version.
|
||||
|
||||

|
||||
|
||||
If the workspace is running, Coder stops it, updates it, then starts the
|
||||
workspace again.
|
||||
|
||||
On the command line:
|
||||
|
||||
```shell
|
||||
|
@ -336,12 +336,13 @@ export const WorkspaceReadyPage: FC<WorkspaceReadyPageProps> = ({
|
||||
setIsConfirmingUpdate(false);
|
||||
}}
|
||||
onClose={() => setIsConfirmingUpdate(false)}
|
||||
title="Update and restart?"
|
||||
title="Update workspace?"
|
||||
confirmText="Update"
|
||||
description={
|
||||
<Stack>
|
||||
<p>
|
||||
Restarting your workspace will stop all running processes and{" "}
|
||||
Updating your workspace will start the workspace on the latest
|
||||
template version. This can{" "}
|
||||
<strong>delete non-persistent data</strong>.
|
||||
</p>
|
||||
{latestVersion?.message && (
|
||||
|
@ -212,8 +212,8 @@ const Consequences: FC<ConsequencesProps> = ({ runningWorkspaces }) => {
|
||||
<p>You are about to update {workspaceCount}.</p>
|
||||
<ul css={styles.consequences}>
|
||||
<li>
|
||||
Updating will stop all running processes and delete non-persistent
|
||||
data.
|
||||
Updating will start workspaces on their latest template versions. This
|
||||
can delete non-persistent data.
|
||||
</li>
|
||||
<li>
|
||||
Anyone connected to a running workspace will be disconnected until the
|
||||
|
Reference in New Issue
Block a user