mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
fix incorrect type on cipher model
This commit is contained in:
parent
927331ae9d
commit
a1b0dcf8fa
2
jslib
2
jslib
@ -1 +1 @@
|
||||
Subproject commit 4bce071498aeda43e44f9b5f7f60ae11a57c7d6f
|
||||
Subproject commit c3ad9b9b7df2c70ea9a80627c3c4e263886eaf8b
|
@ -1,6 +1,5 @@
|
||||
import { CipherType } from 'jslib/enums/cipherType';
|
||||
|
||||
import { CipherRequest } from 'jslib/models/request/cipherRequest';
|
||||
import { CipherView } from 'jslib/models/view/cipherView';
|
||||
|
||||
import { Card } from './card';
|
||||
@ -26,7 +25,7 @@ export class Cipher {
|
||||
return req;
|
||||
}
|
||||
|
||||
static toView(req: CipherRequest, view = new CipherView()) {
|
||||
static toView(req: Cipher, view = new CipherView()) {
|
||||
view.type = req.type;
|
||||
view.folderId = req.folderId;
|
||||
if (view.organizationId == null) {
|
||||
|
Loading…
Reference in New Issue
Block a user