Skip to content

Commit

Permalink
Merge pull request #17798 from jeclrsg/hpcc-30323-activities-missing-WUs
Browse files Browse the repository at this point in the history
HPCC-ECL Watch v9 Activities list not showing active WUs

Reviewed-by: Gordon Smith <[email protected]>
Merged-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday authored Sep 21, 2023
2 parents 83fe505 + 842cfc5 commit ac97366
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion esp/src/src/store/Memory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export class Memory<T extends BaseRow = BaseRow> extends BaseStore<T, T> {
}
}

protected fetchData(request: QueryRequest<T>, options: QueryOptions<T>): ThenableResponse<T> {
protected fetchData(request: QueryRequest<T>, options: QueryOptions<T> = {}): ThenableResponse<T> {
options.alphanumColumns = this.alphanumSort;
const data = this.queryEngine(request, options)(this.data);
data.total = this.data.length;
Expand Down
2 changes: 1 addition & 1 deletion esp/src/src/store/Store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export interface QueryOptions<T> {
start?: number;
count?: number;
sort?: QuerySort<T>;
alphanumColumns: { [id: string]: boolean };
alphanumColumns?: { [id: string]: boolean };
}

export abstract class BaseStore<R extends BaseRow, T extends BaseRow> {
Expand Down

0 comments on commit ac97366

Please sign in to comment.