Skip to content

Commit

Permalink
Merge pull request #1809 from asfadmin/test
Browse files Browse the repository at this point in the history
Prod Release
  • Loading branch information
SpicyGarlicAlbacoreRoll authored Oct 16, 2023
2 parents c9e3099 + 385d3a1 commit 4c8581f
Show file tree
Hide file tree
Showing 89 changed files with 697 additions and 2,204 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export class BaselineChartComponent implements OnInit, OnDestroy {

ngOnInit(): void {
this.createSVG();
const products$ = this.scenesService.scenes$().pipe(
const products$ = this.scenesService.scenes$.pipe(
tap(products => products.map(
product => this.criticalBaseline = criticalBaselineFor(product)
)),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,20 @@
<app-burst-selector></app-burst-selector>
</div>
</mat-expansion-panel>

<mat-expansion-panel
*ngIf="selectedDataset === 'OPERA-S1'"
[expanded]="defaultPanelOpenState" [disabled]="panelIsDisabled" class="raised-section"
(click)="selectPanel(panels.CAMPAIGN)"
[class.raised-section]="isSelected(panels.CAMPAIGN)">
<mat-expansion-panel-header [collapsedHeight]="customCollapsedHeight" [expandedHeight]="customExpandedHeight">
<mat-panel-title>
<!-- {{ 'SLC_BURST_FILTERS' | translate }} -->
OPERA S1 Filters
</mat-panel-title>
</mat-expansion-panel-header>
<div class="selector-card-spacing">
<app-opera-s1-selector></app-opera-s1-selector>
</div>
</mat-expansion-panel>
</mat-accordion>
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import { DatasetSelectorModule } from '@components/shared/selectors/dataset-sele
import { AoiOptionsModule } from '@components/shared/aoi-options';
import { DocsModalModule } from '@components/shared/docs-modal';
import { BurstSelectorModule } from '@components/shared/selectors/burst-selector';
import { OperaS1SelectorModule } from '@components/shared/selectors/opera-s1-selector';
// import { TranslateModule } from "@ngx-translate/core";
import { SharedModule } from "@shared";

Expand All @@ -42,6 +43,7 @@ import { SharedModule } from "@shared";
AoiOptionsModule,
SearchTypeSelectorModule,
BurstSelectorModule,
OperaS1SelectorModule,
SharedModule,
// TranslateModule
],
Expand Down

This file was deleted.

Loading

0 comments on commit 4c8581f

Please sign in to comment.