We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c6a750 commit 49df0a6Copy full SHA for 49df0a6
.gitignore
@@ -1,4 +1,6 @@
1
node_modules/
2
npm-debug.log
3
dist/
4
-.vscode
+.vscode
5
+.*
6
+package-lock.json
client/routes/execution/history.vue
@@ -175,7 +175,7 @@ export default {
175
},
176
filteredEvents(){
177
return this.$parent.results.filter(function(u) {
178
- if (this.eventType && this.eventType != "--"){
+ if (this && this.eventType && this.eventType != "--"){
179
return u.eventType.startsWith(this.eventType)
180
}else{
181
return true
@@ -186,7 +186,7 @@ export default {
186
187
methods: {
188
setEventType(et){
189
- this.eventType = et
+ this.eventType = et.value
190
191
setFormat(format) {
192
this.$router.replace({
0 commit comments