Skip to content
Snippets Groups Projects
Unverified Commit 575a8bd9 authored by シアノン's avatar シアノン Committed by GitHub
Browse files

コントロールパネルのジョブキューに個々のジョブが表示されないのを修正 (#7941)

parent 3db7551a
No related branches found
No related tags found
No related merge requests found
......@@ -55,8 +55,8 @@ export default defineComponent({
const jobs = ref([]);
onMounted(() => {
os.api(props.domain === 'inbox' ? 'admin/queue/inbox-delayed' : props.domain === 'deliver' ? 'admin/queue/deliver-delayed' : null, {}).then(jobs => {
jobs.value = jobs;
os.api(props.domain === 'inbox' ? 'admin/queue/inbox-delayed' : props.domain === 'deliver' ? 'admin/queue/deliver-delayed' : null, {}).then(result => {
jobs.value = result;
});
const onStats = (stats) => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment