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;
|
this.showText = !this.showText;
|
||||||
}
|
}
|
||||||
|
|
||||||
private async load() {
|
async load() {
|
||||||
const keyArray = Utils.fromUrlB64ToArray(this.key);
|
const keyArray = Utils.fromUrlB64ToArray(this.key);
|
||||||
const accessRequest = new SendAccessRequest();
|
const accessRequest = new SendAccessRequest();
|
||||||
if (this.password != null) {
|
if (this.password != null) {
|
||||||
|
|
|
@ -36,6 +36,10 @@ export class SendComponent implements OnInit {
|
||||||
expired: boolean = false;
|
expired: boolean = false;
|
||||||
type: SendType = null;
|
type: SendType = null;
|
||||||
sends: SendView[] = [];
|
sends: SendView[] = [];
|
||||||
|
searchText: string;
|
||||||
|
selectedType: SendType;
|
||||||
|
selectedAll: boolean;
|
||||||
|
searchPlaceholder: string;
|
||||||
|
|
||||||
modal: ModalComponent = null;
|
modal: ModalComponent = null;
|
||||||
actionPromise: any;
|
actionPromise: any;
|
||||||
|
@ -149,4 +153,16 @@ export class SendComponent implements OnInit {
|
||||||
this.platformUtilsService.showToast('success', null,
|
this.platformUtilsService.showToast('success', null,
|
||||||
this.i18nService.t('valueCopied', this.i18nService.t('sendLink')));
|
this.i18nService.t('valueCopied', this.i18nService.t('sendLink')));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
searchTextChanged() {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|
||||||
|
selectAll() {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
|
|
||||||
|
selectType(type: SendType) {
|
||||||
|
// TODO
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue