Skip to content

Commit

Permalink
Merge pull request #708 from biothings/fix-field-name-changes
Browse files Browse the repository at this point in the history
Update examples.js
  • Loading branch information
tokebe authored Aug 23, 2023
2 parents 5f4478f + 400ce93 commit a3262e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/web-app/src/stores/examples.js
Original file line number Diff line number Diff line change
Expand Up @@ -194,12 +194,12 @@ export const useExamplesStore = defineStore({
store.loading = false;
console.log(res.data)
self.jobs.unshift({
'id': res.data.id,
'id': res.data.job_id,
'date': this.getDateRightNow(),
'url': res.data.url,
'url': res.data.job_url,
'description': description
});
self.message = `A new job ID has been created: ${res.data.id} `
self.message = `A new job ID has been created: ${res.data.job_id} `
self.updateJobs();
}).catch(err=>{
store.loading = false;
Expand Down

0 comments on commit a3262e8

Please sign in to comment.