Website: Update MDM landpage's page script (#15869)

Closes: #15868

Changes:
- Updated the device management page script to not reset form validation
rules when the modal is closed.
This commit is contained in:
Eric 2024-01-02 11:58:18 -06:00 committed by GitHub
parent 736ea4b1e3
commit 0df9f1fcbd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 3 deletions

View file

@ -63,7 +63,6 @@ parasails.registerPage('device-management', {
_resetForms: async function() {
this.cloudError = '';
this.formData = {};
this.formRules = {};
this.formErrors = {};
await this.forceRender();
},

View file

@ -67,7 +67,6 @@ parasails.registerPage('launch-party', {
_resetForms: async function() {
this.cloudError = '';
this.formData = {};
this.formRules = {};
this.formErrors = {};
await this.forceRender();
},

View file

@ -57,7 +57,6 @@ parasails.registerPage('upgrade', {
_resetForms: async function() {
this.cloudError = '';
this.formData = {};
this.formRules = {};
this.formErrors = {};
await this.forceRender();
},