1
0
mirror of https://github.com/bitwarden/browser synced 2026-01-17 16:03:20 +00:00

[PM-16859] Fix item creation resetting to login item type on browser (#12765)

* Fix broken item creation on browser

* Fix creation of ssh keys items from a filtered vault resetting to login on web
This commit is contained in:
Bernd Schoolmann
2025-01-09 00:24:23 +01:00
committed by GitHub
parent bb61b3df3a
commit 0d5e4c6f58
2 changed files with 6 additions and 2 deletions

View File

@@ -50,7 +50,7 @@ export class NewItemDropdownV2Component implements OnInit {
this.tab = await BrowserApi.getTabFromCurrentWindow();
}
async buildQueryParams(type: CipherType): Promise<AddEditQueryParams> {
buildQueryParams(type: CipherType): AddEditQueryParams {
const poppedOut = BrowserPopupUtils.inPopout(window);
const loginDetails: { uri?: string; name?: string } = {};