Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prod Release #1920

Merged
merged 10 commits into from
Jun 24, 2024
4 changes: 1 addition & 3 deletions src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
1 change: 0 additions & 1 deletion src/app/services/search.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ export class SearchService {
new filterStore.ClearPerpendicularRange(),
new filterStore.ClearTemporalRange(),
new filterStore.ClearSeason(),
new uiStore.CloseFiltersMenu(),
];

actions.forEach(
Expand Down
6 changes: 2 additions & 4 deletions src/app/store/search/search.effect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,8 @@ export class SearchEffects {
public setCanSearch = createEffect(() => this.actions$.pipe(
ofType<SetSearchAmount>(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()
)
));

Expand Down
1 change: 1 addition & 0 deletions src/googlec521d4cf42937ace.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
google-site-verification: googlec521d4cf42937ace.html
Loading