Skip to content
Snippets Groups Projects
Commit 25670b62 authored by Stephan Porada's avatar Stephan Porada :speech_balloon:
Browse files

Fix inspect results not showing becasue of missing or statement.

parent d82e8483
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ function getResultsData() {
let [resultsType, dataIndexes, resultsList, client, results, rest] = arguments;
client.isBusy = true;
client.notifyView('results-data-recieving');
if (resultsList.exportFullInspectContext.checked) {
if (resultsList.exportFullInspectContext.checked || resultsType === 'inspect-results') {
console.log('Get with full context');
client.getResultsData(resultsType, dataIndexes, results);
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment