mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-23 11:56:00 +01:00
fix compile errors
This commit is contained in:
parent
e9273ff79a
commit
07a3d38bef
@ -107,7 +107,7 @@ export class AccessComponent implements OnInit {
|
||||
this.showText = !this.showText;
|
||||
}
|
||||
|
||||
private async load() {
|
||||
async load() {
|
||||
const keyArray = Utils.fromUrlB64ToArray(this.key);
|
||||
const accessRequest = new SendAccessRequest();
|
||||
if (this.password != null) {
|
||||
|
@ -36,6 +36,10 @@ export class SendComponent implements OnInit {
|
||||
expired: boolean = false;
|
||||
type: SendType = null;
|
||||
sends: SendView[] = [];
|
||||
searchText: string;
|
||||
selectedType: SendType;
|
||||
selectedAll: boolean;
|
||||
searchPlaceholder: string;
|
||||
|
||||
modal: ModalComponent = null;
|
||||
actionPromise: any;
|
||||
@ -149,4 +153,16 @@ export class SendComponent implements OnInit {
|
||||
this.platformUtilsService.showToast('success', null,
|
||||
this.i18nService.t('valueCopied', this.i18nService.t('sendLink')));
|
||||
}
|
||||
|
||||
searchTextChanged() {
|
||||
// TODO
|
||||
}
|
||||
|
||||
selectAll() {
|
||||
// TODO
|
||||
}
|
||||
|
||||
selectType(type: SendType) {
|
||||
// TODO
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user