diff --git a/web/app/src/components/footer/TaskLog.vue b/web/app/src/components/footer/TaskLog.vue
index 780f451d..40ccc099 100644
--- a/web/app/src/components/footer/TaskLog.vue
+++ b/web/app/src/components/footer/TaskLog.vue
@@ -1,8 +1,9 @@
diff --git a/web/app/src/views/JobsView.vue b/web/app/src/views/JobsView.vue
index 1380b8e2..5dfc4665 100644
--- a/web/app/src/views/JobsView.vue
+++ b/web/app/src/views/JobsView.vue
@@ -198,8 +198,6 @@ export default {
* @param {string} taskID task ID, can be empty string for "no task".
*/
_fetchTask(taskID) {
- this._fetchTaskLogTail(taskID);
-
if (!taskID) {
this.tasks.deselectAllTasks();
return;
@@ -215,27 +213,6 @@ export default {
});
},
- /**
- * Fetch task log tail.
- *
- * TODO: Only do this when the footer pop-over is visible and set to the
- * "Task Log" tab. Otherwise the logs won't be shown anyway.
- *
- * @param {string} taskID task ID.
- */
- _fetchTaskLogTail(taskID) {
- this.taskLog.clear();
- if (!taskID) {
- return;
- }
-
- const jobsAPI = new API.JobsApi(apiClient);
- return jobsAPI.fetchTaskLogTail(taskID)
- .then((logTail) => {
- this.taskLog.addChunk(logTail);
- });
- },
-
onChatMessage(message) {
console.log("chat message received:", message);
this.messages.push(`${message.text}`);