Commit 89eff4c 1 parent 4e38380 commit 89eff4c Copy full SHA for 89eff4c
File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @temporalio/ui" ,
3
- "version" : " 2.1.93 " ,
3
+ "version" : " 2.1.94 " ,
4
4
"type" : " module" ,
5
5
"description" : " Temporal.io UI" ,
6
6
"keywords" : [
Original file line number Diff line number Diff line change 6
6
import { autoRefreshWorkflow } from ' $lib/stores/event-view' ;
7
7
import { workflowsQuery , workflowsSearch } from ' $lib/stores/workflows' ;
8
8
import { workflowRun , refresh } from ' $lib/stores/workflow-run' ;
9
- import { eventHistory } from ' $lib/stores/events' ;
9
+ import { eventHistory , updating } from ' $lib/stores/events' ;
10
10
11
11
import {
12
12
routeForEventHistory ,
80
80
81
81
$ : cancelInProgress =
82
82
$workflowRun ?.workflow ?.status === ' Running' &&
83
+ ! $updating &&
83
84
$eventHistory .events .some (
84
85
(event ) => event ?.eventType === ' WorkflowExecutionCancelRequested' ,
85
86
);
129
130
{/if }
130
131
</div >
131
132
{#if cancelInProgress }
132
- <div class ="-mt-4 mb-4" transition :fly ={{ duration : 200 , delay : 100 }}>
133
+ <div class ="-mt-4 mb-4" in :fly ={{ duration : 200 , delay : 100 }}>
133
134
<Alert icon =" info" intent =" info" title =" Cancel Request Sent" >
134
135
The request to cancel this Workflow Execution has been sent. If the
135
136
Workflow uses the cancellation API, it'll cancel at the next available
You can’t perform that action at this time.
0 commit comments