Skip to content

Commit 5f1da0c

Browse files
committed
Fix
1 parent e6fe036 commit 5f1da0c

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/stores/__mocks__/plan.mock.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { derived, writable, type Readable, type Writable } from 'svelte/store';
22
import type { ActivityType } from '../../types/activity';
33
import type { ModelSlim } from '../../types/model';
44
import type { Plan, PlanMergeRequest, PlanMetadata } from '../../types/plan';
5+
import type { PlanDataset } from '../../types/simulation';
56
import type { Tag } from '../../types/tags';
67
import type { TimeRange } from '../../types/timeline';
78

@@ -52,6 +53,8 @@ export const planModelRevision: Readable<number> = derived(initialPlan, $plan =>
5253

5354
export const activityTypes = writable<ActivityType[]>([]);
5455

56+
export const planDatasets = writable<PlanDataset[]>([]);
57+
5558
export const planTags = writable<Tag[]>([]);
5659

5760
export const models = writable<ModelSlim[]>([]);

0 commit comments

Comments
 (0)