1
0
mirror of https://github.com/bitwarden/cli synced 2025-12-10 05:13:54 +00:00

fix incorrect type on cipher model

This commit is contained in:
Kyle Spearrin
2018-06-13 23:15:34 -04:00
parent 927331ae9d
commit a1b0dcf8fa
2 changed files with 2 additions and 3 deletions

2
jslib

Submodule jslib updated: 4bce071498...c3ad9b9b7d

View File

@@ -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) {