Skip to content
This repository was archived by the owner on Apr 22, 2022. It is now read-only.

Commit 3cce866

Browse files
author
taleksashina
committed
"if" statement braces fixed
1 parent 52765b4 commit 3cce866

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/webapp/js/workbench/extraction-and-loading/d2rq-task-controller.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,10 @@ var D2RQTaskCtrl = function($scope, $http, $q, flash, ServerErrorResponse, Accou
6868
console.log($scope.datasets);
6969
for (var ind in $scope.datasets) {
7070
var ds = $scope.datasets[ind];
71-
if (ds.graph==graph && ds.httpEndpoint==endpoint && ds.ontology==ontology)
71+
if (ds.graph==graph && ds.httpEndpoint==endpoint && ds.ontology==ontology) {
7272
console.log(ds);
7373
return ds;
74+
}
7475
}
7576
return null;
7677
};

0 commit comments

Comments
 (0)