fix RED-3000

This commit is contained in:
Dan Percic 2021-12-09 17:07:00 +02:00
parent bb60f6090c
commit 56199264a6

View File

@ -107,7 +107,11 @@ export class FileWorkloadComponent {
private get _showExcludedPages$() {
return this.excludedPagesService.shown$.pipe(
tap(() => this._disableMultiSelectAndDocumentInfo()),
tap(show => {
if (show) {
this._disableMultiSelectAndDocumentInfo();
}
}),
shareLast(),
);
}