mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
コントロールパネルのジョブキューに個々のジョブが表示されないのを修正 (#7941)
This commit is contained in:
parent
ff8a0a2deb
commit
20d4ea720d
1 changed files with 2 additions and 2 deletions
|
@ -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) => {
|
||||
|
|
Loading…
Reference in a new issue