File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
components/WorkspaceScheduleForm
pages/WorkspaceSchedulePage Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ import (
3232 "github.com/coder/coder/codersdk"
3333)
3434
35- const workspaceDefaultTTL = 2 * time .Hour
35+ const workspaceDefaultTTL = 12 * time .Hour
3636
3737var (
3838 ttlMin = time .Minute //nolint:revive // min here means 'minimum' not 'minutes'
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ export const Language = {
5454 timezoneLabel : "Timezone" ,
5555 ttlLabel : "Time until shutdown (hours)" ,
5656 ttlCausesShutdownHelperText : "Your workspace will shut down" ,
57- ttlCausesShutdownAfterStart : "after start" ,
57+ ttlCausesShutdownAfterStart : "after its next start" ,
5858 ttlCausesNoShutdownHelperText : "Your workspace will not automatically shut down." ,
5959 formTitle : "Workspace schedule" ,
6060 startSection : "Start" ,
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export interface AutoStop {
55
66export const emptyTTL = 0
77
8- export const defaultTTL = 8
8+ export const defaultTTL = 12
99
1010const msToHours = ( ms : number ) => Math . round ( ms / ( 1000 * 60 * 60 ) )
1111
You can’t perform that action at this time.
0 commit comments