diff --git a/src/app/common/modals/settings.tsx b/src/app/common/modals/settings.tsx
index 3811718b..586a8fd8 100644
--- a/src/app/common/modals/settings.tsx
+++ b/src/app/common/modals/settings.tsx
@@ -33,9 +33,9 @@ All commands and output will be deleted, and removed from history. To hide the
`.trim();
const SessionDeleteMessage = `
-Are you sure you want to delete this session?
+Are you sure you want to delete this workspace?
-All commands and output will be deleted, and removed from history. To hide the session, and retain the commands in history, use 'archive'.
+All commands and output will be deleted, and removed from history. To hide the workspace, and retain the commands in history, use 'archive'.
`.trim();
const WebShareConfirmMarkdown = `
@@ -427,7 +427,7 @@ class SessionSettingsModal extends React.Component<{ sessionId: string }, {}> {
Archived
- Archive will hide the session from the active menu. Commands and output will be
+ Archive will hide the workspace from the active menu. Commands and output will be
retained in history.
@@ -439,7 +439,7 @@ class SessionSettingsModal extends React.Component<{ sessionId: string }, {}> {
Actions
- Delete will remove the session, removing all commands and output from history.
+ Delete will remove the workspace, removing all commands and output from history.
@@ -447,7 +447,7 @@ class SessionSettingsModal extends React.Component<{ sessionId: string }, {}> {
onClick={this.handleDeleteSession}
className="button is-prompt-danger is-outlined is-small"
>
- Delete Session
+ Delete Workspace
diff --git a/src/app/history/history.less b/src/app/history/history.less
index 5b22b414..d71a4365 100644
--- a/src/app/history/history.less
+++ b/src/app/history/history.less
@@ -323,7 +323,7 @@
margin-right: 1em;
}
- td.session {
+ td.workspace {
flex: 0 0 auto;
flex-basis: 120px;
text-overflow: ellipsis;
diff --git a/src/app/history/history.tsx b/src/app/history/history.tsx
index 2d7bf397..3f19cde5 100644
--- a/src/app/history/history.tsx
+++ b/src/app/history/history.tsx
@@ -376,7 +376,7 @@ class HistoryView extends React.Component<{}, {}> {
{hvm.searchSessionId.get() == null
- ? "Limit Session"
+ ? "Limit Workspace"
: formatSessionName(snames, hvm.searchSessionId.get())}
@@ -388,7 +388,7 @@ class HistoryView extends React.Component<{}, {}> {
key="all"
className="dropdown-item"
>
- (all sessions)
+ (all workspaces)
{
{getHistoryViewTs(nowDate, item.ts)} |
- {formatSSName(snames, scrnames, item)} |
+ {formatSSName(snames, scrnames, item)} |
{formatRemoteName(rnames, item.remote)} |
this.activateItem(item.historyid)}>
{
@@ -3846,13 +3846,7 @@ class CommandRunner {
}
openCreateRemote(): void {
- GlobalModel.submitCommand(
- "remote",
- "new",
- null,
- { nohist: "1", visual: "1" },
- true
- );
+ GlobalModel.submitCommand("remote", "new", null, { nohist: "1", visual: "1" }, true);
}
screenSetRemote(remoteArg: string, nohist: boolean, interactive: boolean): Promise {
|