From a9b5e6ea13d9cd5d0a09ba25c38f253ec30470fd Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Sun, 26 Jul 2020 22:15:50 +0200 Subject: [PATCH] flows: fix shell not showing spinner after submit --- passbook/flows/templates/flows/shell.html | 1 + 1 file changed, 1 insertion(+) diff --git a/passbook/flows/templates/flows/shell.html b/passbook/flows/templates/flows/shell.html index 20422c157..2ec813f3f 100644 --- a/passbook/flows/templates/flows/shell.html +++ b/passbook/flows/templates/flows/shell.html @@ -137,6 +137,7 @@ const setFormSubmitHandlers = () => { form.addEventListener('submit', (e) => { e.preventDefault(); let formData = new FormData(form); + showSpinner(); fetch(flowBodyUrl, { method: 'post', body: formData,