Skip to content

Commit

Permalink
109442: Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Atmire-Kristof committed Dec 5, 2023
1 parent 9bd7ecd commit 72e5cb6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { Component, Input, OnChanges, OnInit } from '@angular/core';
import { Component, Input, OnChanges } from '@angular/core';

import { Bitstream } from '../../../core/shared/bitstream.model';
import { AuthService } from '../../../core/auth/auth.service';
import { AuthorizationDataService } from '../../../core/data/feature-authorization/authorization-data.service';
import { FileService } from '../../../core/shared/file.service';
import { BehaviorSubject, Observable, of as observableOf } from 'rxjs';
import { BehaviorSubject, of as observableOf } from 'rxjs';
import { switchMap } from 'rxjs/operators';
import { FeatureID } from '../../../core/data/feature-authorization/feature-id';
import { hasValue } from '../../empty.util';
Expand All @@ -19,7 +19,7 @@ export class ComcolPageLogoComponent implements OnChanges {

@Input() alternateText: string;

src$: BehaviorSubject<string> = new BehaviorSubject<string>(undefined)
src$: BehaviorSubject<string> = new BehaviorSubject<string>(undefined);

Check warning on line 22 in src/app/shared/comcol/comcol-page-logo/comcol-page-logo.component.ts

View check run for this annotation

Codecov / codecov/patch

src/app/shared/comcol/comcol-page-logo/comcol-page-logo.component.ts#L22

Added line #L22 was not covered by tests

/**
* The default 'holder.js' image
Expand Down

0 comments on commit 72e5cb6

Please sign in to comment.