mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Found more JSON properties to change into JavaScript camelCase
This commit is contained in:
parent
b9ef8ae2c9
commit
974350ebee
45 changed files with 361 additions and 412 deletions
|
|
@ -29,7 +29,7 @@ export class AccountPopupView extends AbstractViewPopup {
|
|||
submitForm(form) {
|
||||
if (!this.submitRequest() && form.reportValidity()) {
|
||||
const data = new FormData(form);
|
||||
data.set('New', this.isNew() ? 1 : 0);
|
||||
data.set('new', this.isNew() ? 1 : 0);
|
||||
this.submitRequest(true);
|
||||
Remote.request('AccountSetup', (iError, data) => {
|
||||
this.submitRequest(false);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue