Skip to content

Commit

Permalink
Merge branch 'master' into issue-2751
Browse files Browse the repository at this point in the history
  • Loading branch information
Awk34 authored Jul 23, 2018
2 parents ce46519 + 4271660 commit 31ba302
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/generators/app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -522,6 +522,7 @@ export class Generator extends Base {
return contents
.replace(/confirmpassword/g, 'confirmPassword')
.replace(/loginform/g, 'loginForm')
.replace(/changepasswordform/g, 'changePasswordForm')
.replace(/newpassword/g, 'newPassword')
.replace(/ngif/g, 'ngIf')
.replace(/ngfor/g, 'ngFor')
Expand Down
2 changes: 1 addition & 1 deletion templates/app/_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"passport-google-oauth20": "^1.0.0",<% } %><% if(filters.ws) { %>
"primus": "^7.0.1",
"primus-emit": "^1.0.0",
"uws": "^10.148.0",<% } %>
"uws": "10.148.1",<% } %>
"serve-favicon": "^2.3.0"
},
"devDependencies": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<h1>Change Password</h1>
</div>
<div class="col-sm-12">
<form class="form" name="form" (ngSubmit)="changePassword()" novalidate>
<form class="form" name="changePasswordForm" (ngSubmit)="changePassword(changePasswordForm)" novalidate #changePasswordForm="ngForm">

<div class="form-group">
<label>Current Password</label>
Expand Down

0 comments on commit 31ba302

Please sign in to comment.