1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-23 19:53:43 +00:00

[SM-582] update sm logo (#4896)

* update logo

* update layout stories

* remove unused logo; optimize svg
This commit is contained in:
Will Martin
2023-03-02 09:14:29 -05:00
committed by GitHub
parent bb36184256
commit fa1a779b63
4 changed files with 18 additions and 12 deletions

View File

@@ -12,13 +12,11 @@ import { SecretsManagerLogo } from "./secrets-manager-logo";
templateUrl: "./navigation.component.html",
})
export class NavigationComponent {
protected readonly logo = SecretsManagerLogo;
protected orgFilter = (org: Organization) => org.canAccessSecretsManager;
protected isAdmin$ = this.route.params.pipe(
map((params) => this.organizationService.get(params.organizationId)?.isAdmin)
);
protected readonly logo = SecretsManagerLogo;
protected orgFilter = (org: Organization) => org.canAccessSecretsManager;
constructor(private route: ActivatedRoute, private organizationService: OrganizationService) {}
}