Skip to content

Commit

Permalink
fix recent jobs screen
Browse files Browse the repository at this point in the history
  • Loading branch information
themsaid committed Mar 6, 2019
1 parent dd7698e commit 1ab5749
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 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=957fed34f39984da48bc",
"/app.js": "/app.js?id=21c12cfbe8d8560ddc22",
"/app.css": "/app.css?id=cefed9132a927b70fdd6",
"/app-dark.css": "/app-dark.css?id=596688837e7ffbb58e37"
}
6 changes: 3 additions & 3 deletions resources/js/screens/recentJobs/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
/**
* Load the jobs of the given tag.
*/
loadJobs(starting = 0, refreshing = false) {
loadJobs(starting = -1, refreshing = false) {
if (!refreshing) {
this.ready = false;
}
Expand All @@ -75,7 +75,7 @@
loadNewEntries() {
this.jobs = [];
this.loadJobs(0, false);
this.loadJobs(-1, false);
this.hasNewEntries = false;
},
Expand All @@ -90,7 +90,7 @@
return;
}
this.loadJobs(0, true);
this.loadJobs(-1, true);
}, 3000);
},
Expand Down

0 comments on commit 1ab5749

Please sign in to comment.