Data Source Toolbar Filter

Hi, what has changed in the new 'v92" branch on GitHub. The filter we set did work before but now it doesn't work anymore. We only want to show the directs when the view is initial loaded (don't have to set filter manually).

Do I have to change something in the code. This is our code:

private async init(): Promise<void> {

    this.filterOptions = [
      {
        Description: await this.translate.get('#LDS#Status').toPromise(),
        Name: 'OnlyDirect',
        Delimiter: ',',
        Options: [
          {
            Value: "true",
            Display: await this.translate.get('#LDS#Directly assigned').toPromise(),
          },
        ],
        Column: 'OnlyDirect',
      },
    ];
    const OnlyDirect = this.filterOptions.findIndex((elem) => elem.Name === 'OnlyDirect');
    this.filterOptions[OnlyDirect].InitialValue = 'true';
  }