Skip to content

Commit

Permalink
Strip trailing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
jgonggrijp committed Apr 10, 2021
1 parent 181d8a4 commit 1a6c1b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/explorer/explorer-event-controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -309,9 +309,9 @@ export function getItems(source: Node): ItemGraph {
const sparqlItems = new ItemGraph();
let offsetMultiplier = 0;
const limit = 10000;

const runQueries = (): any => {
let queryString = itemsForSourceQuery(asURI(source),
let queryString = itemsForSourceQuery(asURI(source),
{limit: limit, offset: offsetMultiplier*limit}
);
return queryInBatches(sparqlItems, queryString).then(result => {
Expand Down

0 comments on commit 1a6c1b8

Please sign in to comment.