From 07a3d38bef81212a244654aa7f273e6599829fe0 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 4 Nov 2020 16:30:19 -0500 Subject: [PATCH] fix compile errors --- src/app/send/access.component.ts | 2 +- src/app/send/send.component.ts | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/src/app/send/access.component.ts b/src/app/send/access.component.ts index 4068656c813..4fe229efb14 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 f4ec0670ce9..807c1efaad7 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 + } }