Skip to content

Commit 2653b98

Browse files
Andy/6335 (#2374)
* DS-6335 Identifying GCOV (Geocoded Polarimetric Covariance) as the recommended product in the NISAR Science Filters * DS-6335 Sci-Prod Recommended Made text more readable in Dark Mode * npm run lint -- --fix
1 parent a08de52 commit 2653b98

4 files changed

Lines changed: 24 additions & 17 deletions

File tree

src/app/components/shared/selectors/product-science-selector/product-science-selector.component.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,16 @@
1717
class="sci-prod-optgroup"
1818
>
1919
@for (sciProd of group.sciProd; track sciProd) {
20-
<mat-option [value]="sciProd.value">{{
21-
sciProd.viewValue
22-
}}
20+
<mat-option [value]="sciProd.value"
21+
>{{ sciProd.viewValue }}
2322
</mat-option>
2423
}
2524
</mat-optgroup>
2625
}
2726
}
28-
<span class="sci-prod-recommended">*{{ 'RECOMMENDED_PRODUCT' | translate }}</span>
27+
<span class="sci-prod-recommended faint-text"
28+
>*{{ 'RECOMMENDED_PRODUCT' | translate }}</span
29+
>
2930
</div>
3031

3132
<div class="sci-prod-filter-flex-item">

src/app/components/shared/selectors/product-science-selector/product-science-selector.component.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
@use "@angular/material" as mat;
2+
@use "asf-theme-variables" as *;
3+
14
div.cdk-overlay-pane:has(>.sci-prod-select) {
25
min-width: fit-content !important;
36
//width: fit-content !important;

src/app/components/shared/selectors/product-science-selector/product-science-selector.component.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,10 @@ export class ProductScienceSelectorComponent implements OnInit, OnDestroy {
5151
disabled: false,
5252
sciProd: [
5353
{ value: 'GSLC', viewValue: 'GSLC (Geocoded Single Look Complex)' },
54-
{ value: 'GCOV', viewValue: '*GCOV (Geocoded Polarimetric Covariance)' },
54+
{
55+
value: 'GCOV',
56+
viewValue: '*GCOV (Geocoded Polarimetric Covariance)',
57+
},
5558
{ value: 'GUNW', viewValue: 'GUNW (Geocoded Interferogram)' },
5659
{ value: 'GOFF', viewValue: 'GOFF (Geocoded Pixel Offsets)' },
5760
],

src/karma.conf.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ module.exports = function (config) {
1616
autoWatch: true,
1717
browsers: ['ChromeHeadless'],
1818
customLaunchers: {
19-
HeadlessChrome: {
20-
base: 'ChromeHeadless',
21-
flags: [
22-
'--no-sandbox',
23-
'--headless',
24-
'--disable-setuid-sandbox',
25-
'--disable-gpu',
26-
'--disable-translate',
27-
'--disable-extensions'
28-
]
29-
}
19+
HeadlessChrome: {
20+
base: 'ChromeHeadless',
21+
flags: [
22+
'--no-sandbox',
23+
'--headless',
24+
'--disable-setuid-sandbox',
25+
'--disable-gpu',
26+
'--disable-translate',
27+
'--disable-extensions',
28+
],
29+
},
3030
},
3131
singleRun: false,
3232
browserNoActivityTimeout: 120000,
33-
urlRoot: ''
33+
urlRoot: '',
3434
});
3535
};

0 commit comments

Comments
 (0)