From 959e069ea9f1f0b798aa254f71631f3a5c14394a Mon Sep 17 00:00:00 2001 From: Eva Date: Mon, 24 Jul 2023 08:28:27 +0200 Subject: [PATCH] :bug: Fix unnecessary button --- CHANGES.md | 1 + frontend/src/app/main/ui/dashboard/import.cljs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index ff0d415f6..90980f908 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -89,6 +89,7 @@ - Fix when user deletes one file during import it is impossible to finish importing of second file [Taiga #5656](https://tree.taiga.io/project/penpot/issue/5656) - Fix export multiple images when only one of them has export settings [Taiga #5649](https://tree.taiga.io/project/penpot/issue/5649) - Fix error when a user different than the thread creator edits a comment [Taiga #5647](https://tree.taiga.io/project/penpot/issue/5647) +- Fix unnecessary button [Taiga #3312](https://tree.taiga.io/project/penpot/issue/3312) ### :arrow_up: Deps updates diff --git a/frontend/src/app/main/ui/dashboard/import.cljs b/frontend/src/app/main/ui/dashboard/import.cljs index 5a24b393a..bb26e8d0a 100644 --- a/frontend/src/app/main/ui/dashboard/import.cljs +++ b/frontend/src/app/main/ui/dashboard/import.cljs @@ -400,7 +400,7 @@ [:div.modal-footer [:div.action-buttons - (when (or (= :analyzing (:status @state)) pending-import?) + (when (= :analyzing (:status @state)) [:input.cancel-button {:type "button" :value (tr "labels.cancel")