Error with rxjs 7.4.0

Forum rules
Please note that response time for technical support is within 3-5 business days.
Post Reply
aflorin
Posts: 69
Joined: 13 Dec 2017, 19:01

07 Jul 2022, 05:24

Just a heads up that the theme has an error when using rxjs 7.4.0 (which is compatible with angular 13.x).

In app.menu.service.ts

Code: Select all

    reset() {
        this.resetSource.next();
    }
Needs to be:

Code: Select all

    reset() {
        this.resetSource.next(null);
    }

cetincakiroglu
Posts: 130
Joined: 17 Dec 2021, 09:33

12 Aug 2022, 15:14

Hi,

This code block will cause a malfunction in horizontal and slim modes. Please do not use that.

Code: Select all

    
    reset() {
        this.resetSource.next(null);
    }
It should be like this:

Code: Select all

    
    reset() {
        this.resetSource.next(true);
    }

Post Reply

Return to “Avalon - PrimeNG”

  • Information
  • Who is online

    Users browsing this forum: No registered users and 4 guests