fix compile errors

This commit is contained in:
Kyle Spearrin 2020-11-04 16:30:19 -05:00
parent e9273ff79a
commit 07a3d38bef
2 changed files with 17 additions and 1 deletions

View File

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

View File

@ -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
}
}