Skip to content

Commit

Permalink
remove unused items from processor-status-listing.component.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
rfellows committed Dec 15, 2023
1 parent 5c84197 commit 4e157ac
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import { Component } from '@angular/core';
import { Store } from '@ngrx/store';
import {
selectClusterSummary,
selectProcessorIdFromRoute,
selectProcessorStatus,
selectProcessorStatusSnapshots,
Expand All @@ -29,7 +28,6 @@ import {
import { ProcessorStatusSnapshotEntity, SummaryListingState } from '../../state/summary-listing';
import { selectUser } from '../../../../state/user/user.selectors';
import { initialState } from '../../state/summary-listing/summary-listing.reducer';
import { Router } from '@angular/router';
import { openStatusHistoryDialog } from '../../../../state/status-history/status-history.actions';
import { ComponentType } from '../../../../state/shared';
import { filter, switchMap, take } from 'rxjs';
Expand All @@ -42,7 +40,6 @@ import * as SummaryListingActions from '../../state/summary-listing/summary-list
styleUrls: ['./processor-status-listing.component.scss']
})
export class ProcessorStatusListing {
clusterSummary$ = this.store.select(selectClusterSummary);
processorStatusSnapshots$ = this.store.select(selectProcessorStatusSnapshots);
loadedTimestamp$ = this.store.select(selectSummaryListingLoadedTimestamp);
summaryListingStatus$ = this.store.select(selectSummaryListingStatus);
Expand All @@ -51,8 +48,7 @@ export class ProcessorStatusListing {
currentUser$ = this.store.select(selectUser);

constructor(
private store: Store<SummaryListingState>,
private router: Router
private store: Store<SummaryListingState>
) {
this.store
.select(selectViewStatusHistory)
Expand Down

0 comments on commit 4e157ac

Please sign in to comment.