Skip to content
This repository has been archived by the owner on May 20, 2024. It is now read-only.

Commit

Permalink
Fix the queues key to be string not object (#86)
Browse files Browse the repository at this point in the history
* Fix: Queue name is displayed as array #84

* Apply style ci fixes

* Apply style ci fixes

* Fix the queues key to be string not object

* Rebuild assets

---------

Co-authored-by: mo7zayed <[email protected]>
Co-authored-by: Joe Dixon <[email protected]>
  • Loading branch information
3 people authored Feb 1, 2023
1 parent f1dd42a commit eaecfda
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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,4 +1,4 @@
{
"/app.js": "/app.js?id=1ccd4f16ca5ceb8af8b2",
"/app.js": "/app.js?id=44c148984c42d320dccb",
"/app.css": "/app.css?id=fbb793d795cfb9fe09b2"
}
2 changes: 1 addition & 1 deletion resources/js/mixins/job.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default {
let q = Object.keys(queue)[0] || null;

if (q) {
queues[queue] = q;
queues[q] = q;
return;
}
}
Expand Down

0 comments on commit eaecfda

Please sign in to comment.