summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorシアノン <xianon@hotmail.co.jp>2021-11-05 11:55:00 +0900
committerGitHub <noreply@github.com>2021-11-05 11:55:00 +0900
commit575a8bd9c84edcbf222a0327d3d5f575afe8c4d0 (patch)
tree5a2ea25d8f6615205206bdd835cbf4f3337473da /src
parentfix html conversion issue with code blocks (#7943) (diff)
downloadsharkey-575a8bd9c84edcbf222a0327d3d5f575afe8c4d0.tar.gz
sharkey-575a8bd9c84edcbf222a0327d3d5f575afe8c4d0.tar.bz2
sharkey-575a8bd9c84edcbf222a0327d3d5f575afe8c4d0.zip
コントロールパネルのジョブキューに個々のジョブが表示されないのを修正 (#7941)
Diffstat (limited to 'src')
-rw-r--r--src/client/pages/admin/queue.chart.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/pages/admin/queue.chart.vue b/src/client/pages/admin/queue.chart.vue
index 084181a606..38cd0b10ef 100644
--- a/src/client/pages/admin/queue.chart.vue
+++ b/src/client/pages/admin/queue.chart.vue
@@ -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) => {