Skip to content

Commit

Permalink
Fix spinner not hiding on field edit screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Mosnar committed Jun 21, 2022
1 parent 45511d0 commit c684987
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ Craft.BulkEditModal = Garnish.Modal.extend({
}
})
.then((response) => {
console.log('data', response.data)
const data = response.data
this.$container.append(data.modalHtml);
Craft.initUiElements(this.$container);
Expand Down Expand Up @@ -179,7 +178,6 @@ Craft.BulkEditModal = Garnish.Modal.extend({
const formDataObject = this._getFieldConfig(formData)
this.fieldConfig = formDataObject
this.$container.find('.field-edit-modal').remove();
this._initSpinner();
this.loadFieldEditor(formDataObject);
},

Expand Down

0 comments on commit c684987

Please sign in to comment.