Skip to content

Commit

Permalink
compile and fix retry error
Browse files Browse the repository at this point in the history
  • Loading branch information
themsaid committed Mar 2, 2020
1 parent 54e5c24 commit df7adc1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion public/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"/app.js": "/app.js?id=1bff3c377fa3b85636bd",
"/app.js": "/app.js?id=b6ca13cf79686b973daf",
"/app.css": "/app.css?id=81fbc8fec874ad3203d7",
"/app-dark.css": "/app-dark.css?id=3d68663a6ab8e86cb5dc"
}
2 changes: 2 additions & 0 deletions resources/js/screens/failedJobs/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@
setTimeout(() => {
this.retryingJobs = _.reject(this.retryingJobs, job => job == id);
}, 5000);
}).catch(error => {
this.retryingJobs = _.reject(this.retryingJobs, job => job == id);
});
},
Expand Down

0 comments on commit df7adc1

Please sign in to comment.