diff --git a/src/app/app.component.ts b/src/app/app.component.ts index fccff58d9..1c8d38dd1 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -531,9 +531,7 @@ export class AppComponent implements OnInit, OnDestroy, AfterViewInit { }), debounceTime(200), filter(_ => this.searchType !== SearchType.SARVIEWS_EVENTS - && this.searchType !== SearchType.CUSTOM_PRODUCTS - && this.searchType !== SearchType.BASELINE - && this.searchType !== SearchType.SBAS), + && this.searchType !== SearchType.CUSTOM_PRODUCTS), map(params => ({...params, output: 'COUNT'})), tap(_ => this.store$.dispatch(new searchStore.SearchAmountLoading()) diff --git a/src/app/components/header/processing-queue/confirmation/confirmation.component.ts b/src/app/components/header/processing-queue/confirmation/confirmation.component.ts index 4d0e04463..155a1b47f 100644 --- a/src/app/components/header/processing-queue/confirmation/confirmation.component.ts +++ b/src/app/components/header/processing-queue/confirmation/confirmation.component.ts @@ -39,13 +39,17 @@ export class ConfirmationComponent implements OnInit { ngOnInit(): void { this.jobTypesWithQueued = this.data.jobTypesWithQueued; this.processingOptions = this.data.processingOptions; - this.projectName = this.data.projectName; this.validateOnly = this.data.validateOnly; this.allJobs = this.jobTypesWithQueued.reduce((total, jobs) => { total = [...total, ...jobs.jobs]; return total; }, []); + this.store$.dispatch(new hyp3Store.SetProcessingProjectName(null)); + + this.store$.select(hyp3Store.getProcessingProjectName).subscribe(name => { + this.projectName = name; + }); } public onToggleJobType(tabQueue): void { diff --git a/src/app/components/results-menu/sbas-results-menu/sbas-results-menu.component.scss b/src/app/components/results-menu/sbas-results-menu/sbas-results-menu.component.scss index 1b95f756c..4c25dba5c 100644 --- a/src/app/components/results-menu/sbas-results-menu/sbas-results-menu.component.scss +++ b/src/app/components/results-menu/sbas-results-menu/sbas-results-menu.component.scss @@ -150,6 +150,7 @@ $config: mat.define-legacy-typography-config(); } margin-top: -4px; + transform: rotate(0.4deg); @include md-icon-size($asf-ribbon-icon-size); } diff --git a/src/app/components/results-menu/scenes-list-header/scenes-list-header.component.scss b/src/app/components/results-menu/scenes-list-header/scenes-list-header.component.scss index 32c75d34c..f65144ba2 100644 --- a/src/app/components/results-menu/scenes-list-header/scenes-list-header.component.scss +++ b/src/app/components/results-menu/scenes-list-header/scenes-list-header.component.scss @@ -66,7 +66,7 @@ $config: mat.define-legacy-typography-config(); font-size: 18px; padding: 0; margin: 0; - width: 12px; + width: 18px; height: 12px; vertical-align: middle; position: relative; diff --git a/src/app/services/search.service.ts b/src/app/services/search.service.ts index 47c99df6b..81866ed76 100644 --- a/src/app/services/search.service.ts +++ b/src/app/services/search.service.ts @@ -35,7 +35,6 @@ export class SearchService { new filterStore.ClearPerpendicularRange(), new filterStore.ClearTemporalRange(), new filterStore.ClearSeason(), - new uiStore.CloseFiltersMenu(), ]; actions.forEach( diff --git a/src/app/store/search/search.effect.ts b/src/app/store/search/search.effect.ts index d3180d62f..22d99b606 100644 --- a/src/app/store/search/search.effect.ts +++ b/src/app/store/search/search.effect.ts @@ -71,10 +71,8 @@ export class SearchEffects { public setCanSearch = createEffect(() => this.actions$.pipe( ofType(SearchActionType.SET_SEARCH_AMOUNT), withLatestFrom(this.store$.select(getSearchType)), - map(([action, searchType]) => - (action.payload > 0 - || searchType === SearchType.BASELINE - || searchType === SearchType.SBAS) ? new EnableSearch() : new DisableSearch() + map(([action, _searchType]) => + (action.payload > 0 ) ? new EnableSearch() : new DisableSearch() ) )); diff --git a/src/googlec521d4cf42937ace.html b/src/googlec521d4cf42937ace.html new file mode 100644 index 000000000..a293e8351 --- /dev/null +++ b/src/googlec521d4cf42937ace.html @@ -0,0 +1 @@ +google-site-verification: googlec521d4cf42937ace.html