File tree Expand file tree Collapse file tree
src/lib/components/lines-and-dots Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22 import { page } from ' $app/stores' ;
33
44 import { translate } from ' $lib/i18n/translate' ;
5+ import { isCloud } from ' $lib/stores/advanced-visibility' ;
56 import { relativeTime , timeFormat } from ' $lib/stores/time-format' ;
67 import type { WorkflowExecution } from ' $lib/types/workflows' ;
78 import { formatDate } from ' $lib/utilities/format-date' ;
148149 title ={translate (' common.history-size-bytes' )}
149150 content ={workflow ?.historySizeBytes }
150151 />
151- <WorkflowDetail
152- title ={translate (' workflows.state-transitions' )}
153- content ={workflow ?.stateTransitionCount }
154- />
152+ {#if ! $isCloud }
153+ <WorkflowDetail
154+ title ={translate (' workflows.state-transitions' )}
155+ content ={workflow ?.stateTransitionCount }
156+ />
157+ {/if }
155158 </div >
156159</div >
You can’t perform that action at this time.
0 commit comments