lint fixes

This commit is contained in:
addison 2021-02-18 13:06:21 -05:00
parent 0918ad1425
commit 689f2c3535
1 changed files with 2 additions and 2 deletions

View File

@ -115,14 +115,14 @@ export class SendComponent extends BaseSendComponent implements OnInit, OnDestro
const menu = new remote.Menu();
menu.append(new remote.MenuItem({
label: this.i18nService.t('copyLink'),
click: () => this.copy(send)
click: () => this.copy(send),
}));
menu.append(new remote.MenuItem({
label: this.i18nService.t('delete'),
click: async () => {
await this.delete(send);
await this.deletedSend(send);
}
},
}));
menu.popup({ window: remote.getCurrentWindow() });
}