1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-27 14:53:44 +00:00

fix bad renames

This commit is contained in:
Will Martin
2026-01-26 23:56:16 -05:00
parent 1d2a8e5f19
commit cebb300fba
3 changed files with 7 additions and 7 deletions

View File

@@ -3,15 +3,15 @@ import { Component, Input } from "@angular/core";
import { RouterModule } from "@angular/router";
import { JslibModule } from "@bitwarden/angular/jslib.module";
import { Icon } from "@bitwarden/assets/svg";
import { BitSvg } from "@bitwarden/assets/svg";
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
import { SvgModule, LinkModule } from "@bitwarden/components";
export type NavButton = {
label: string;
page: string;
icon: Icon;
iconActive: Icon;
icon: BitSvg;
iconActive: BitSvg;
showBerry?: boolean;
};

View File

@@ -1,7 +1,7 @@
import { CommonModule } from "@angular/common";
import { ChangeDetectionStrategy, Component, input, isDevMode, OnInit } from "@angular/core";
import { Icon } from "@bitwarden/assets/svg";
import { BitSvg } from "@bitwarden/assets/svg";
import { ButtonModule, SvgModule } from "@bitwarden/components";
@Component({
@@ -11,7 +11,7 @@ import { ButtonModule, SvgModule } from "@bitwarden/components";
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class EmptyStateCardComponent implements OnInit {
readonly icon = input<Icon | null>(null);
readonly icon = input<BitSvg | null>(null);
readonly videoSrc = input<string | null>(null);
readonly title = input<string>("");
readonly description = input<string>("");

View File

@@ -2,7 +2,7 @@ import { Component } from "@angular/core";
import { ActivatedRoute } from "@angular/router";
import { map, concatMap, firstValueFrom } from "rxjs";
import { Icon, DeactivatedOrg } from "@bitwarden/assets/svg";
import { BitSvg, DeactivatedOrg } from "@bitwarden/assets/svg";
import {
getOrganizationById,
OrganizationService,
@@ -23,7 +23,7 @@ export class OrgSuspendedComponent {
private route: ActivatedRoute,
) {}
protected DeactivatedOrg: Icon = DeactivatedOrg;
protected DeactivatedOrg: BitSvg = DeactivatedOrg;
protected organizationName$ = this.route.params.pipe(
concatMap(async (params) => {
const userId = await firstValueFrom(getUserId(this.accountService.activeAccount$));