bitwarden-desktop/src/app/layout/nav.component.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
491 B
TypeScript
Raw Normal View History

2021-02-05 18:44:45 +01:00
import { Component } from "@angular/core";
2022-02-24 20:50:19 +01:00
import { I18nService } from "jslib-common/abstractions/i18n.service";
2021-02-05 18:34:01 +01:00
@Component({
selector: "app-nav",
templateUrl: "nav.component.html",
})
export class NavComponent {
items: any[] = [
{
link: "/vault",
icon: "bwi-lock-f",
2021-02-05 18:44:45 +01:00
label: this.i18nService.translate("myVault"),
2021-02-05 18:34:01 +01:00
},
{
link: "/send",
icon: "bwi-send-f",
2021-02-05 18:34:01 +01:00
label: "Send",
},
];
2021-02-05 18:44:45 +01:00
constructor(private i18nService: I18nService) {}
2021-02-05 18:34:01 +01:00
}