Skip to content

Commit a82f532

Browse files
author
ugur-camoglu
committed
parsing func update
1 parent ca582b1 commit a82f532

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/parsing-functions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -541,7 +541,7 @@ export function parseAnalysisSteps(analysis_steps, parsingOptions = {}){
541541

542542
function areAnyRunDataPresentAndEqual(node, stepIO){
543543
const { meta: { run_data: nodeRunData } = {} } = node;
544-
const { run_data: ioRunData } = stepIO;
544+
const { run_data: ioRunData = {} } = stepIO;
545545
if (!nodeRunData) return false;
546546
// AB: Not sure / can't remember why array is always expected here, it might make sense to check if not array and then use [ ioRunData.file ]
547547
const stepIOFiles = (ioRunData && Array.isArray(ioRunData.file) && ioRunData.file) || [];

0 commit comments

Comments
 (0)