From 030f2e2f333f8a313152bb28f7c626a877c625f0 Mon Sep 17 00:00:00 2001 From: frikky Date: Tue, 2 Mar 2021 08:58:08 +0100 Subject: [PATCH] #284: Quickfix button to see all actions --- frontend/src/views/AppCreator.jsx | 33 ++++++++++++++++++------------- 1 file changed, 19 insertions(+), 14 deletions(-) diff --git a/frontend/src/views/AppCreator.jsx b/frontend/src/views/AppCreator.jsx index 6d62055e..5ed4bcb0 100644 --- a/frontend/src/views/AppCreator.jsx +++ b/frontend/src/views/AppCreator.jsx @@ -2067,8 +2067,24 @@ const AppCreator = (props) => { const actionView = -
-

Actions ({actions.length})

+
+
+ {actionAmount > 0 && actionAmount < actions.length ? + + : null} +
+

Actions ({actionAmount} / {actions.length})

Actions are the tasks performed by an app. Read more about actions and apps here.
@@ -2091,18 +2107,7 @@ const AppCreator = (props) => { setActionsModalOpen(true) }}>New action {/* - {actionAmount} {actions.length} - {actionAmount > 0 && actionAmount < actions.length ? null : - - } + {actionAmount} {actions.length} */}