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

Fix spanish vertex issues #1878

Merged
merged 17 commits into from
Mar 21, 2024
Merged
Show file tree
Hide file tree
Changes from 10 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 68 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
//max-height: calc(100vh - 32px);
max-height: 100vh;
overflow: hidden;
z-index: 1020;
z-index: 2020;
}

.no-pointer {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
.default-filters-presets,
.default-map {
margin-right: 30px;
width: 145px;
width: 220px;
}

.hyp3-url {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<div>
<span class="fx-empty mr-10">
<span class="control-mat-button-toggle scene-text">
{{ numBaselineScenes$ | async }} {{ 'SCENE' | translate }}{{
{{ numBaselineScenes$ | async }} of {{ numUnfilteredBaselineScenes$ | async }} {{ 'SCENE' | translate }}{{
(numBaselineScenes$ | async) === 1 ? "" : "s"
}}
</span>
Expand Down Expand Up @@ -208,7 +208,7 @@
</ng-container>

<mat-card

class="mp0 no-box-shadow"
[ngClass]="{
'criteria-header--layout': breakpoint <= breakpoints.MEDIUM,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ $config: mat.define-legacy-typography-config();
.list-button-group {
max-width: fit-content;
margin-top: -11px;
line-height: 26px !important;
line-height: 16px !important;
}

.button-group-label {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ export class BaselineResultsMenuComponent implements OnInit, OnDestroy {
map(scenes => scenes.length),
);

public numUnfilteredBaselineScenes$ = this.scenesService.unfilteredScenes$.pipe(
map(scenes => scenes.length),
);

public pairs = [];
public products = [];
public downloadableProds = [];
Expand Down
Loading