Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

Commit

Permalink
Merge branch 'master' into cache
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffchew authored Nov 2, 2021
2 parents c710508 + 8172c3c commit 8355add
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion examples/codesandbox/angular/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @license
*
* Copyright IBM Corp. 2019
* Copyright IBM Corp. 2019, 2021
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
Expand All @@ -19,4 +19,5 @@ if (environment.production) {

platformBrowserDynamic()
.bootstrapModule(AppModule)
// eslint-disable-next-line no-console
.catch(err => console.error(err));
3 changes: 2 additions & 1 deletion examples/codesandbox/form/angular/src/app/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @license
*
* Copyright IBM Corp. 2019, 2020
* Copyright IBM Corp. 2019, 2021
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
Expand Down Expand Up @@ -107,6 +107,7 @@ export class AppComponent {
passwordControl.setErrors(null);
}
if (form.valid) {
// eslint-disable-next-line no-alert
alert(`You submitted:\n\n${JSON.stringify(form.value, null, 2)}`);
}
this.submitInProgress = false;
Expand Down
3 changes: 2 additions & 1 deletion examples/codesandbox/form/angular/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* @license
*
* Copyright IBM Corp. 2019
* Copyright IBM Corp. 2019, 2021
*
* This source code is licensed under the Apache-2.0 license found in the
* LICENSE file in the root directory of this source tree.
Expand All @@ -19,4 +19,5 @@ if (environment.production) {

platformBrowserDynamic()
.bootstrapModule(AppModule)
// eslint-disable-next-line no-console
.catch(err => console.error(err));
1 change: 1 addition & 0 deletions tools/get-changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ function getChangelog() {
changelog += '\n';
}

// eslint-disable-next-line no-console
console.log(changelog);
}

Expand Down

0 comments on commit 8355add

Please sign in to comment.