-
Task Details
+
Task Details
+
+
+
+ ID |
+ {{ taskData.id }} |
+
+
+
+ Name |
+ {{ taskData.name }} |
+
+
+
+ Status |
+ {{ taskData.status }} |
+
+
+
+ Type |
+ {{ taskData.type }} |
+
+
+
+ Prio |
+ {{ taskData.priority }} |
+
+
+
+ Created |
+ {{ datetime.relativeTime(taskData.created) }} |
+
+
+ Updated |
+ {{ datetime.relativeTime(taskData.updated) }} |
+
+
+
+
Commands
+
+
+ {{ cmd.name }} |
+ {{ cmd.parameters }} |
+
+
+
+
+
+
No task selected, pick one from the list on the left.
diff --git a/web/app/src/components/UpdateListener.vue b/web/app/src/components/UpdateListener.vue
index 4d81ca10..302eed75 100644
--- a/web/app/src/components/UpdateListener.vue
+++ b/web/app/src/components/UpdateListener.vue
@@ -86,7 +86,7 @@ export default {
console.log("socketIO reconnected after", attemptNumber, "attempts");
// Resubscribe to whatever we want to be subscribed to:
- if (this.subscribedJob) this._updateJobSubscription("subscribe", newJob);
+ if (this.subscribedJob) this._updateJobSubscription("subscribe", this.subscribedJob);
this.$emit("sioReconnected", attemptNumber);
});