fix form button loading indicator

pull/105/head
Alex Turchyn 2 years ago
parent 422639114b
commit 2fab6984ea

@ -531,14 +531,14 @@ export default {
? this.$refs.currentStep.submit ? this.$refs.currentStep.submit
: () => Promise.resolve({}) : () => Promise.resolve({})
stepPromise().then(() => { stepPromise().then(async () => {
const formData = new FormData(this.$refs.form) const formData = new FormData(this.$refs.form)
if (this.currentStep === this.stepFields.length - 1) { if (this.currentStep === this.stepFields.length - 1) {
formData.append('completed', 'true') formData.append('completed', 'true')
} }
this.saveStep(formData).then(async (response) => { await this.saveStep(formData).then(async (response) => {
if (response.status === 422) { if (response.status === 422) {
const data = await response.json() const data = await response.json()

Loading…
Cancel
Save