Skip to content

Commit

Permalink
Merge pull request #1941 from ProgrammeVitam/12968-500-on-probative-v…
Browse files Browse the repository at this point in the history
…alue

Bug #12968: 500 on probative value due to order by #id
  • Loading branch information
laedanrex authored Jul 10, 2024
2 parents 256ec91 + 184b942 commit c35eed2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* knowledge of the CeCILL-C license and that you accept its terms.
*/
import { Component, EventEmitter, Input, OnDestroy, OnInit, Output } from '@angular/core';
import { Subject, merge } from 'rxjs';
import { merge, Subject } from 'rxjs';
import { debounceTime } from 'rxjs/operators';
import { DEFAULT_PAGE_SIZE, Direction, InfiniteScrollTable, PageRequest } from 'vitamui-library';

Expand Down Expand Up @@ -73,7 +73,7 @@ export class ProbativeValueListComponent extends InfiniteScrollTable<any> implem

loaded = false;

orderBy = '#id';
orderBy = 'evDateTime';
direction = Direction.ASCENDANT;

private readonly searchChange = new Subject<string>();
Expand Down

0 comments on commit c35eed2

Please sign in to comment.