projects: fix missing variable

This commit is contained in:
Simone Gotti 2019-09-23 10:17:58 +02:00
parent c441bae091
commit c20fdcfbfb
1 changed files with 1 additions and 1 deletions

View File

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