Skip to content

Commit 49df0a6

Browse files
committed
Fix
1 parent 9c6a750 commit 49df0a6

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
node_modules/
22
npm-debug.log
33
dist/
4-
.vscode
4+
.vscode
5+
.*
6+
package-lock.json

client/routes/execution/history.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ export default {
175175
},
176176
filteredEvents(){
177177
return this.$parent.results.filter(function(u) {
178-
if (this.eventType && this.eventType != "--"){
178+
if (this && this.eventType && this.eventType != "--"){
179179
return u.eventType.startsWith(this.eventType)
180180
}else{
181181
return true
@@ -186,7 +186,7 @@ export default {
186186
},
187187
methods: {
188188
setEventType(et){
189-
this.eventType = et
189+
this.eventType = et.value
190190
},
191191
setFormat(format) {
192192
this.$router.replace({

0 commit comments

Comments
 (0)