Merge branch 'master' into VM/RED-2614

This commit is contained in:
Valentin 2022-01-17 22:25:35 +02:00
commit 2e36f3cac7
2 changed files with 3 additions and 3 deletions

View File

@ -60,11 +60,11 @@ export class ErrorService {
} }
setOnline(): void { setOnline(): void {
this._online$.next(); this._online$.next(true);
} }
clear(): void { clear(): void {
this._error$.next(); this._error$.next(undefined);
} }
private _offline() { private _offline() {

View File

@ -34,7 +34,7 @@ export class FilterService {
} }
refresh(): void { refresh(): void {
this._refresh$.next(); this._refresh$.next(true);
} }
toggleFilter(filterGroupSlug: string, key: string): void { toggleFilter(filterGroupSlug: string, key: string): void {