diff --git a/web/app/src/views/JobsView.vue b/web/app/src/views/JobsView.vue
index b79e5bf5..e989c5bd 100644
--- a/web/app/src/views/JobsView.vue
+++ b/web/app/src/views/JobsView.vue
@@ -4,7 +4,7 @@
-
+
@@ -55,6 +55,11 @@ export default {
notifs: useNotifs(),
showFooterPopup: false,
}),
+ computed: {
+ hasJobData() {
+ return !objectEmpty(this.jobs.activeJob);
+ },
+ },
mounted() {
window.jobsView = this;
window.footerPopup = this.$refs.footerPopup;