Skip to content

Commit 614c641

Browse files
authored
Merge pull request #114 from classmodel/profiles-starttime
Set default start time of profile plots to 0
2 parents 3781ac8 + 2acbaa9 commit 614c641

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/class-solid/src/lib/store.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ export function addAnalysis(name: string) {
287287
type: "profiles",
288288
name: "Vertical profiles",
289289
variable: "Potential temperature [K]",
290-
time: Number.POSITIVE_INFINITY,
290+
time: 0,
291291
} as ProfilesAnalysis;
292292
break;
293293
case "Thermodynamic diagram":
@@ -296,7 +296,7 @@ export function addAnalysis(name: string) {
296296
description: "",
297297
type: "skewT",
298298
name: "Thermodynamic diagram",
299-
time: Number.POSITIVE_INFINITY,
299+
time: 0,
300300
} as SkewTAnalysis;
301301
break;
302302
default:

0 commit comments

Comments
 (0)