Merge branch 'development' into ben/fix/sidebar-links
This commit is contained in:
commit
9a8e2f4c1c
2 changed files with 4 additions and 4 deletions
|
@ -89,7 +89,7 @@ export class AccountEditComponent implements OnInit {
|
|||
|
||||
const submitData = {
|
||||
email: settingForm.email,
|
||||
postcode: settingForm.postcode,
|
||||
postcode: settingForm.postcode.toUpperCase(),
|
||||
password: settingForm.password,
|
||||
new_password: settingForm.new_password,
|
||||
name: settingOrganisationForm.name,
|
||||
|
@ -142,7 +142,7 @@ export class AccountEditComponent implements OnInit {
|
|||
|
||||
const submitData = {
|
||||
email: settingForm.email,
|
||||
postcode: settingForm.postcode,
|
||||
postcode: settingForm.postcode.toUpperCase(),
|
||||
password: settingForm.password,
|
||||
new_password: settingForm.new_password,
|
||||
full_name: settingCustomerForm.full_name,
|
||||
|
|
Reference in a new issue