Merge pull request #1711 from mini-bomba/darkreader-proofing-the-fvlabels

Reset fvlabel color definitions when segment == null
This commit is contained in:
Ajay Ramachandran
2023-03-31 13:06:37 -04:00
committed by GitHub

View File

@@ -117,13 +117,13 @@ class CategoryPillComponent extends React.Component<CategoryPillProps, CategoryP
private getColor(): string { private getColor(): string {
// Handled by setCategoryColorCSSVariables() of content.ts // Handled by setCategoryColorCSSVariables() of content.ts
const category = this.state.segment?.category; const category = this.state.segment?.category;
return `var(--sb-category-preview-${category}, var(--sb-category-${category}))`; return category == null ? null : `var(--sb-category-preview-${category}, var(--sb-category-${category}))`;
} }
private getTextColor(): string { private getTextColor(): string {
// Handled by setCategoryColorCSSVariables() of content.ts // Handled by setCategoryColorCSSVariables() of content.ts
const category = this.state.segment?.category; const category = this.state.segment?.category;
return `var(--sb-category-text-preview-${category}, var(--sb-category-text-${category}))`; return category == null ? null : `var(--sb-category-text-preview-${category}, var(--sb-category-text-${category}))`;
} }
private openTooltip(): void { private openTooltip(): void {