Skip to content

Commit

Permalink
[desktop]: Fix type 'string' is not assignable
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagohm committed May 18, 2024
1 parent 47bfcc3 commit 85de870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion desktop/src/app/atlas/atlas.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export class AtlasComponent implements OnInit, AfterContentInit, AfterViewInit,
readonly satelliteSearchGroup = new Map<SatelliteGroupType, boolean>()

name? = 'Sun'
tags: { title: string, severity: string }[] = []
tags: { title: string, severity: 'success' | 'info' | 'warning' | 'danger' }[] = []

@ViewChild('imageOfSun')
private readonly imageOfSun!: ElementRef<HTMLImageElement>
Expand Down

0 comments on commit 85de870

Please sign in to comment.