Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AaronPlave committed Feb 12, 2024
1 parent 9a1de3d commit 7929665
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/timeline/Row.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import { zoom as d3Zoom, zoomIdentity, type D3ZoomEvent, type ZoomBehavior, type ZoomTransform } from 'd3-zoom';
import { pick } from 'lodash-es';
import { createEventDispatcher } from 'svelte';
import { Status } from '../../enums/status';
import { catchError } from '../../stores/errors';
import {
externalResourceNames,
Expand Down Expand Up @@ -46,7 +47,6 @@
import { classNames } from '../../utilities/generic';
import { sampleProfiles } from '../../utilities/resources';
import { getSimulationStatus } from '../../utilities/simulation';
import { Status } from '../../utilities/status';
import { pluralize } from '../../utilities/text';
import { getDoyTime } from '../../utilities/time';
import {
Expand Down Expand Up @@ -135,7 +135,7 @@
// TODO deleting external dataset seems to also delete the associated sim?
$: if (plan && simulationDataset !== null && layers && $externalResources) {
const simulationDatasetId = simulationDataset.id;
const simulationDatasetId = simulationDataset.dataset_id;
const resourceNamesSet = new Set<string>();
layers.map(l => {
if (l.chartType === 'line' || l.chartType === 'x-range') {
Expand Down

0 comments on commit 7929665

Please sign in to comment.