mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
@@ -1,5 +1,3 @@
|
||||
import 'core-js';
|
||||
|
||||
import { ToasterModule } from 'angular2-toaster';
|
||||
import { InfiniteScrollModule } from 'ngx-infinite-scroll';
|
||||
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
/* tslint:disable */
|
||||
import 'core-js/es6';
|
||||
import 'core-js/es7/reflect';
|
||||
import 'core-js/stable';
|
||||
require('zone.js/dist/zone');
|
||||
|
||||
// IE11 fix, ref: https://github.com/angular/angular/issues/24769
|
||||
|
||||
@@ -192,7 +192,7 @@ export class PaymentComponent implements OnInit {
|
||||
}
|
||||
|
||||
handleStripeCardPayment(clientSecret: string, successCallback: () => Promise<any>): Promise<any> {
|
||||
return new Promise((resolve, reject) => {
|
||||
return new Promise<void>((resolve, reject) => {
|
||||
if (this.showMethods && this.stripeCardNumberElement == null) {
|
||||
reject();
|
||||
return;
|
||||
|
||||
@@ -118,7 +118,7 @@ export class TaxInfoComponent {
|
||||
|
||||
submitTaxInfo(): Promise<any> {
|
||||
if (!this.hasChanged()) {
|
||||
return new Promise(resolve => { resolve(); });
|
||||
return new Promise<void>(resolve => { resolve(); });
|
||||
}
|
||||
const request = this.getTaxInfoRequest();
|
||||
return this.organizationId ? this.apiService.putOrganizationTaxInfo(this.organizationId,
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Bitwarden U2F Connector</title>
|
||||
<script src="scripts/u2f.js"></script>
|
||||
</head>
|
||||
|
||||
<body></body>
|
||||
|
||||
Reference in New Issue
Block a user