File tree 5 files changed +8
-4
lines changed
routes/namespaces/[namespace]/workflows/[workflow]/[run]
5 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @temporalio/ui" ,
3
- "version" : " 2.1.92 " ,
3
+ "version" : " 2.1.93 " ,
4
4
"type" : " module" ,
5
5
"description" : " Temporal.io UI" ,
6
6
"keywords" : [
Original file line number Diff line number Diff line change 1
1
<script lang =" ts" >
2
2
import { page } from ' $app/stores' ;
3
- import { workflowRun , loading } from ' $lib/stores/workflow-run' ;
3
+ import { workflowRun } from ' $lib/stores/workflow-run' ;
4
+ import { loading } from ' $lib/stores/workflow-run-loading' ;
4
5
import { timelineEvents } from ' $lib/stores/events' ;
5
6
6
7
import Header from ' $lib/layouts/workflow-header.svelte' ;
Original file line number Diff line number Diff line change
1
+ import { writable } from 'svelte/store' ;
2
+
3
+ export const loading = writable ( true ) ;
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ import type { GetPollersResponse } from '$lib/services/pollers-service';
9
9
import { decodeURIForSvelte } from '$lib/utilities/encode-uri' ;
10
10
import { toDecodedPendingActivities } from '$lib/models/pending-activities' ;
11
11
import { authUser } from '$lib/stores/auth-user' ;
12
+ import { loading } from '$lib/stores/workflow-run-loading' ;
12
13
13
14
export const refresh = writable ( 0 ) ;
14
15
const namespace = derived ( [ page ] , ( [ $page ] ) => $page . params . namespace ) ;
@@ -73,7 +74,6 @@ const updateWorkflowRun: StartStopNotifier<{
73
74
} ;
74
75
75
76
export const updating = writable ( true ) ;
76
- export const loading = writable ( true ) ;
77
77
export const workflowRun = readable < WorkflowRunStore > (
78
78
initialWorkflowRun ,
79
79
updateWorkflowRun ,
Original file line number Diff line number Diff line change 1
1
<script lang =" ts" >
2
2
import { onDestroy } from ' svelte' ;
3
- import { loading } from ' $lib/stores/workflow-run' ;
3
+ import { loading } from ' $lib/stores/workflow-run-loading ' ;
4
4
import { clearPreviousEventParameters } from ' $lib/stores/previous-events' ;
5
5
6
6
onDestroy (() => {
You can’t perform that action at this time.
0 commit comments