Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion Utilities/JsonUtils/resolveUnitInputJson.m
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,15 @@
end

jsonstruct = resJsonstruct;

end

elseif iscell(jsonstruct)

% we have cells. We call resolveFileInputJson on each element
for i_jsonstruct = 1 : numel(jsonstruct)
jsonstruct{i_jsonstruct} = resolveUnitInputJson(jsonstruct{i_jsonstruct});
end
end

end
Expand Down
Loading