Skip to content

Commit 6a4d734

Browse files
authored
v3.22.0 (#242)
* 3.22.0-beta.0 * adding uniqueId to ensure if a workflow becomes closed it will still show open workflow (#243) * 3.22.0
1 parent 018ecc8 commit 6a4d734

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

client/components/workflow-grid.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export default {
6565
<div class="spacer" />
6666
<no-results :results="workflows" v-if="!loading" />
6767
<RecycleScroller
68-
key-field="runId"
68+
key-field="uniqueId"
6969
:items="workflows"
7070
:item-size="56"
7171
emit-update

client/routes/domain/workflow-list.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ export default {
9696
return results.map(result => ({
9797
workflowId: result.execution.workflowId,
9898
runId: result.execution.runId,
99+
uniqueId: `${result.execution.runId}-${result.closeStatus || 'OPEN'}`,
99100
workflowName: result.type.name,
100101
startTime: getDatetimeFormattedString({
101102
date: result.startTime,

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cadence-web",
3-
"version": "3.21.2",
3+
"version": "3.22.0",
44
"description": "Cadence Web UI",
55
"main": "server/index.js",
66
"licence": "MIT",

0 commit comments

Comments
 (0)