Skip to content

Commit 59e7ff3

Browse files
katarina-calakresimir-coko
authored andcommitted
1911-fixed PR issues
1 parent b54405d commit 59e7ff3

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

client/src/pages/automation/project/components/project-header/ProjectHeader.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -297,10 +297,7 @@ const ProjectHeader = ({
297297

298298
<TooltipContent>
299299
{isOnline ? (
300-
<>
301-
{!isFetching && 'All changes are saved'}
302-
{!!isFetching && 'Saving your progress'}
303-
</>
300+
<>{!isFetching ? 'All changes are saved' : 'Saving your progress'}</>
304301
) : (
305302
'You are offline'
306303
)}

client/src/pages/automation/project/components/project-header/ProjectHeaderWorkflowActionsButton.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ const ProjectHeaderWorkflowActionsButton = ({
4949
{!runDisabled ? (
5050
<>
5151
{workflowIsRunning && 'Stop the current workflow'}
52+
5253
{!workflowIsRunning && chatTrigger && 'Start the chat'}
54+
5355
{!workflowIsRunning && !chatTrigger && 'Run the current workflow'}
5456
</>
5557
) : (

0 commit comments

Comments
 (0)