From 52994658649aa9df1514233119178e4b344a5f1f Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Wed, 6 Apr 2022 08:28:57 +0200 Subject: [PATCH] :bug: Setting in-progress to false when export fails --- frontend/src/app/main/data/exports.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/main/data/exports.cljs b/frontend/src/app/main/data/exports.cljs index 46dd9ca1f..75712fe66 100644 --- a/frontend/src/app/main/data/exports.cljs +++ b/frontend/src/app/main/data/exports.cljs @@ -137,7 +137,7 @@ (update :export assoc :progress done :last-update (dt/now) :healthy? healthy?) (= status "error") - (update :export assoc :error (:cause data) :last-update (dt/now) :healthy? healthy?) + (update :export assoc :in-progress false :error (:cause data) :last-update (dt/now) :healthy? healthy?) (= status "ended") (update :export assoc :in-progress false :last-update (dt/now) :healthy? healthy?))))