Skip to content

Commit

Permalink
Fixed the selection list not clearing reading list removal [#535]
Browse files Browse the repository at this point in the history
  • Loading branch information
mcpierce committed Mar 1, 2021
1 parent 4d97772 commit 0ce7c95
Showing 1 changed file with 4 additions and 1 deletion.
Expand Up @@ -51,7 +51,10 @@ export class ReadingListAdaptor {
private _showSelectionDialog$ = new BehaviorSubject<boolean>(false);
private _removingComics$ = new BehaviorSubject<boolean>(false);

constructor(private store: Store<LibraryModuleState>, private logger: LoggerService) {
constructor(
private store: Store<LibraryModuleState>,
private logger: LoggerService
) {
this.store
.select(READING_LIST_FEATURE_KEY)
.pipe(filter(state => !!state))
Expand Down

0 comments on commit 0ce7c95

Please sign in to comment.