File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 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)
You can’t perform that action at this time.
0 commit comments