Skip to content

Commit 9c44d7b

Browse files
authored
Merge branch 'master' into issue-2691
2 parents d98b24d + 4271660 commit 9c44d7b

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Diff for: src/generators/app/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -522,6 +522,7 @@ export class Generator extends Base {
522522
return contents
523523
.replace(/confirmpassword/g, 'confirmPassword')
524524
.replace(/loginform/g, 'loginForm')
525+
.replace(/changepasswordform/g, 'changePasswordForm')
525526
.replace(/newpassword/g, 'newPassword')
526527
.replace(/ngif/g, 'ngIf')
527528
.replace(/ngfor/g, 'ngFor')

Diff for: templates/app/_package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"passport-google-oauth20": "^1.0.0",<% } %><% if(filters.ws) { %>
4646
"primus": "^7.0.1",
4747
"primus-emit": "^1.0.0",
48-
"uws": "^10.148.0",<% } %>
48+
"uws": "10.148.1",<% } %>
4949
"serve-favicon": "^2.3.0"
5050
},
5151
"devDependencies": {

Diff for: templates/app/client/app/account(auth)/settings/settings.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<h1>Change Password</h1>
55
</div>
66
<div class="col-sm-12">
7-
<form class="form" name="form" (ngSubmit)="changePassword()" novalidate>
7+
<form class="form" name="changePasswordForm" (ngSubmit)="changePassword(changePasswordForm)" novalidate #changePasswordForm="ngForm">
88

99
<div class="form-group">
1010
<label>Current Password</label>

0 commit comments

Comments
 (0)