Skip to content

Commit

Permalink
Merge pull request #371 from inowas/dev
Browse files Browse the repository at this point in the history
Merge dev into master
  • Loading branch information
Roschl authored Jan 29, 2021
2 parents c1b1092 + aac053d commit 66ade64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scenes/t19/components/HeatTransportInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const HeatTransportInput = (props: IProps) => {
const processings = ProcessingCollection.fromObject(p.processings);
const processedData = await processings.apply(mergedData);
const uniqueData = processedData.filter((value, index, self) => self.findIndex((v) => v.timeStamp === value.timeStamp) === index);
const timeProcessedData = await makeTimeProcessingRequest(uniqueData, '1d', 'cubic');
const timeProcessedData = await makeTimeProcessingRequest(uniqueData, '1d', 'time');
if (timeProcessedData.length > 0) {
const ts: number[] = timeProcessedData.map((t: IDateTimeValue) => t.timeStamp);
const tp: [number, number] = [ts[0], ts[ts.length - 1]];
Expand Down

0 comments on commit 66ade64

Please sign in to comment.