Fix linting errors
This commit is contained in:
parent
76c040aff9
commit
d0a5326bd7
|
@ -350,12 +350,12 @@ export class SettingsComponent implements OnInit {
|
|||
}
|
||||
|
||||
async saveBrowserIntegration() {
|
||||
if (process.platform ==='darwin' && !this.platformUtilsService.isMacAppStore()) {
|
||||
if (process.platform === 'darwin' && !this.platformUtilsService.isMacAppStore()) {
|
||||
await this.platformUtilsService.showDialog(
|
||||
this.i18nService.t('browserIntegrationMasOnlyDesc'),
|
||||
this.i18nService.t('browserIntegrationMasOnlyTitle'),
|
||||
this.i18nService.t('ok'), null, 'warning');
|
||||
|
||||
|
||||
this.enableBrowserIntegration = false;
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -85,7 +85,7 @@ export default class NativeMessage {
|
|||
|
||||
try {
|
||||
processData();
|
||||
} catch(e) {
|
||||
} catch (e) {
|
||||
console.error(e);
|
||||
}
|
||||
});
|
||||
|
|
|
@ -59,7 +59,7 @@ export class NativeMessagingService {
|
|||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
this.secureCommunication(remotePublicKey, appId);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue