diff --git a/src/components/panels/JobqueuePanel.vue b/src/components/panels/JobqueuePanel.vue index 8ab308c38..22d54e144 100644 --- a/src/components/panels/JobqueuePanel.vue +++ b/src/components/panels/JobqueuePanel.vue @@ -36,12 +36,13 @@ + @@ -57,8 +58,9 @@ import Panel from '@/components/ui/Panel.vue' import { mdiPlay, mdiPause, mdiTrayFull } from '@mdi/js' import JobqueueEntry from '@/components/panels/Status/JobqueueEntry.vue' import draggable from 'vuedraggable' +import JobqueueEntrySum from '@/components/panels/Status/JobqueueEntrySum.vue' @Component({ - components: { draggable, JobqueueEntry, Panel }, + components: { JobqueueEntrySum, draggable, JobqueueEntry, Panel }, }) export default class JobqueuePanel extends Mixins(BaseMixin) { mdiPlay = mdiPlay @@ -93,11 +95,15 @@ export default class JobqueuePanel extends Mixins(BaseMixin) { diff --git a/src/components/panels/Status/Jobqueue.vue b/src/components/panels/Status/Jobqueue.vue index d1c80bbaa..85ca50dd9 100644 --- a/src/components/panels/Status/Jobqueue.vue +++ b/src/components/panels/Status/Jobqueue.vue @@ -51,7 +51,11 @@ export default class StatusPanelJobqueue extends Mixins(BaseMixin) { diff --git a/src/components/panels/Status/JobqueueEntry.vue b/src/components/panels/Status/JobqueueEntry.vue index 0f0fdc90d..17b468988 100644 --- a/src/components/panels/Status/JobqueueEntry.vue +++ b/src/components/panels/Status/JobqueueEntry.vue @@ -1,7 +1,7 @@