Skip to content

Commit

Permalink
Fix paging argument 'size'
Browse files Browse the repository at this point in the history
  • Loading branch information
tomachalek committed Feb 23, 2021
1 parent 0a99a17 commit 2f8dcb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/js/server/freqdb/backends/korpusdb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export interface HTTPDataResponse {
query:{[key:string]:any},
page:{
from:number;
to:number;
size:number;
}
}

Expand Down Expand Up @@ -156,7 +156,7 @@ export class KorpusFreqDB implements IFreqDB {
}
}
],
page: {from: 0, to: 100},
page: {from: 0, size: 1000},
query: {
feats: [],
type: words.length > 1 ? `:ngram:form:${words.length}` : ':token:form',
Expand Down

0 comments on commit 2f8dcb2

Please sign in to comment.