File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed
Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 99} from "./api-clients/client" ;
1010import { Sandbox } from "./Sandbox" ;
1111import {
12- getDefaultTemplateId ,
1312 getDefaultTemplateTag ,
1413 getStartOptions ,
1514 getStartResponse ,
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
6262export function getDefaultTemplateId ( apiClient : Client ) : string {
You can’t perform that action at this time.
0 commit comments