Merge pull request #20 from sgotti/projects_fix_missing_variable

projects: fix missing variable
This commit is contained in:
Simone Gotti 2019-09-23 10:23:55 +02:00 committed by GitHub
commit 1cba296470
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ export default {
this.fetchAbort = new AbortController(); this.fetchAbort = new AbortController();
if (this.$route.params.runid) { if (this.$route.params.runid) {
let { data, error } = await fetchRun( let { data, error, aborted } = await fetchRun(
this.$route.params.runid, this.$route.params.runid,
this.fetchAbort.signal this.fetchAbort.signal
); );