Skip to content

Commit 4607933

Browse files
merge
2 parents 3765562 + 10b0b1d commit 4607933

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

src/Sandboxes.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import {
99
} from "./api-clients/client";
1010
import { Sandbox } from "./Sandbox";
1111
import {
12-
getDefaultTemplateId,
1312
getDefaultTemplateTag,
1413
getStartOptions,
1514
getStartResponse,

src/Session/commands.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,18 @@ export class Command {
162162
/**
163163
* The status of the command.
164164
*/
165-
status: CommandStatus = "RUNNING";
165+
#status: CommandStatus = "RUNNING";
166+
167+
get status(): CommandStatus {
168+
return this.#status;
169+
}
170+
171+
set status(value: CommandStatus) {
172+
if (this.#status !== value) {
173+
this.#status = value;
174+
this.onStatusChangeEmitter.fire(this.#status);
175+
}
176+
}
166177

167178
/**
168179
* The command that was run

src/utils/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export function getDefaultTemplateTag(apiClient: Client): string {
5656
return "7ngcrf";
5757
}
5858

59-
return "pt_TRkPA6ypYZ7cRLQYgCmRHs";
59+
return "pt_LAVK5kxK8XciqgV2642xRk";
6060
}
6161

6262
export function getDefaultTemplateId(apiClient: Client): string {

0 commit comments

Comments
 (0)