mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 00:03:56 +00:00
small fixes
This commit is contained in:
@@ -3,7 +3,7 @@ import { AttachmentView } from 'jslib/models/view/attachmentView';
|
|||||||
export class AttachmentResponse {
|
export class AttachmentResponse {
|
||||||
id: string;
|
id: string;
|
||||||
fileName: string;
|
fileName: string;
|
||||||
size: number;
|
size: string;
|
||||||
sizeName: string;
|
sizeName: string;
|
||||||
url: string;
|
url: string;
|
||||||
|
|
||||||
|
|||||||
@@ -178,7 +178,7 @@ export class Program extends BaseProgram {
|
|||||||
writeLn(' bw unlock myPassword321 --raw');
|
writeLn(' bw unlock myPassword321 --raw');
|
||||||
writeLn('', true);
|
writeLn('', true);
|
||||||
})
|
})
|
||||||
.option('--check', 'Check vault status.', async () => {
|
.option('--check', 'Check lock status.', async () => {
|
||||||
const locked = await this.main.lockService.isLocked();
|
const locked = await this.main.lockService.isLocked();
|
||||||
if (!locked) {
|
if (!locked) {
|
||||||
const res = new MessageResponse('Vault is unlocked!', null);
|
const res = new MessageResponse('Vault is unlocked!', null);
|
||||||
|
|||||||
Reference in New Issue
Block a user