diff --git a/src/app/send/access.component.ts b/src/app/send/access.component.ts index 4068656c81..4fe229efb1 100644 --- a/src/app/send/access.component.ts +++ b/src/app/send/access.component.ts @@ -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) { diff --git a/src/app/send/send.component.ts b/src/app/send/send.component.ts index f4ec0670ce..807c1efaad 100644 --- a/src/app/send/send.component.ts +++ b/src/app/send/send.component.ts @@ -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 + } }