From c81ba15d745fe90c266486a647539b83adb58fa7 Mon Sep 17 00:00:00 2001 From: tylercchase Date: Fri, 14 Jun 2024 09:23:09 -0400 Subject: [PATCH 1/7] fix: don't close filters panel on clear search --- src/app/services/search.service.ts | 1 - 1 file changed, 1 deletion(-) 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( From 4c0ac675879d10b7a475a2b7960372db3872f50a Mon Sep 17 00:00:00 2001 From: tylercchase Date: Fri, 14 Jun 2024 10:56:12 -0400 Subject: [PATCH 2/7] fix: sbas control icons cutoff --- .../sbas-results-menu/sbas-results-menu.component.scss | 1 + 1 file changed, 1 insertion(+) 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); } From a0db3bbaae85eb66ebdc20ab170de06606df5958 Mon Sep 17 00:00:00 2001 From: tylercchase Date: Fri, 14 Jun 2024 12:04:17 -0400 Subject: [PATCH 3/7] style: baseline header buttons arrow cutoff --- .../scenes-list-header/scenes-list-header.component.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; From 9006b377ac6ca8936ae50b447b1d2b90e585605b Mon Sep 17 00:00:00 2001 From: tylercchase Date: Mon, 17 Jun 2024 11:38:14 -0400 Subject: [PATCH 4/7] fix: count query fires for sbas and baseline --- src/app/app.component.ts | 4 +--- src/app/store/search/search.effect.ts | 6 ++---- 2 files changed, 3 insertions(+), 7 deletions(-) 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/store/search/search.effect.ts b/src/app/store/search/search.effect.ts index d3180d62f..a63390ead 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() // this ) )); From b303fe8de9743b4f6075f22c65d9ca9ea168cb64 Mon Sep 17 00:00:00 2001 From: tylercchase Date: Tue, 18 Jun 2024 10:44:29 -0400 Subject: [PATCH 5/7] chore: remove comment --- src/app/store/search/search.effect.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/store/search/search.effect.ts b/src/app/store/search/search.effect.ts index a63390ead..22d99b606 100644 --- a/src/app/store/search/search.effect.ts +++ b/src/app/store/search/search.effect.ts @@ -72,7 +72,7 @@ export class SearchEffects { ofType(SearchActionType.SET_SEARCH_AMOUNT), withLatestFrom(this.store$.select(getSearchType)), map(([action, _searchType]) => - (action.payload > 0 ) ? new EnableSearch() : new DisableSearch() // this + (action.payload > 0 ) ? new EnableSearch() : new DisableSearch() ) )); From 3a2c9c396903d2f83833ebe2a78912862ebb0f75 Mon Sep 17 00:00:00 2001 From: William Horn Date: Mon, 24 Jun 2024 11:15:30 -0800 Subject: [PATCH 6/7] fix: project name not getting added to hyp3 jobs from vertex --- .../processing-queue/confirmation/confirmation.component.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 { From 05f8988e0b01e50097c71e9a9eb6d4d8cd86fca0 Mon Sep 17 00:00:00 2001 From: Andrew Anderson Date: Mon, 24 Jun 2024 13:45:54 -0700 Subject: [PATCH 7/7] Verifying Google Console. --- src/googlec521d4cf42937ace.html | 1 + 1 file changed, 1 insertion(+) create mode 100644 src/googlec521d4cf42937ace.html 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