1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-02 17:53:41 +00:00

remove unimplemented create login item button

This commit is contained in:
Alex
2025-11-07 13:29:44 -05:00
parent 650139de89
commit 446e18b261
2 changed files with 0 additions and 14 deletions

View File

@@ -22,11 +22,6 @@
<a class="tw-text-primary-600" routerLink="/login">{{ "learnMore" | i18n }}</a>
</div>
</ng-container>
<ng-container slot="button">
<button (click)="goToCreateNewLoginItem()" bitButton buttonType="primary" type="button">
{{ "createNewLoginItem" | i18n }}
</button>
</ng-container>
</bit-no-items>
</div>
} @else {

View File

@@ -85,15 +85,6 @@ export class AllApplicationsComponent implements OnInit {
});
}
goToCreateNewLoginItem = async () => {
// TODO: implement
this.toastService.showToast({
variant: "warning",
title: "",
message: "Not yet implemented",
});
};
isMarkedAsCriticalItem(applicationName: string) {
return this.selectedUrls.has(applicationName);
}