Skip to content

Commit 1afa848

Browse files
committed
Fix type
1 parent d2fc2f7 commit 1afa848

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

client/routes/execution/history.vue

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<th>ID</th>
2626
<th>Type <v-select
2727
class="eventType"
28-
value="--"
28+
value="All"
2929
:options="eventTypes"
3030
:on-change="setEventType"
3131
:searchable="false"
@@ -110,6 +110,7 @@ export default {
110110
splitEnabled: false,
111111
eventType: "",
112112
eventTypes: [
113+
{ value: 'All', label: 'All' },
113114
{ value: 'Decision', label: 'Decision' },
114115
{ value: 'Activity', label: 'Activity' },
115116
{ value: 'Signal', label: 'Signal' },
@@ -172,7 +173,7 @@ export default {
172173
return `${this.$route.params.workflowId.replace(/[\\~#%&*{}\/:<>?|\"-]/g, ' ')} - ${this.$route.params.runId}.json`
173174
},
174175
filteredEvents() {
175-
if (this && this.eventType && this.eventType != "--") {
176+
if (this && this.eventType && this.eventType != "All") {
176177
var et = this.eventType
177178
return this.$parent.results.filter(function (u) {
178179
return u.eventType.startsWith(et)

0 commit comments

Comments
 (0)