diff --git a/src/views/tasks/TaskDetailView.vue b/src/views/tasks/TaskDetailView.vue
index ebc3d84e..11f4d107 100644
--- a/src/views/tasks/TaskDetailView.vue
+++ b/src/views/tasks/TaskDetailView.vue
@@ -4,7 +4,7 @@
{{ getNamespaceTitle(parent.namespace) }} >
-
+
{{ getListTitle(parent.list) }}
@@ -474,7 +474,6 @@ export default {
showDeleteModal: false,
descriptionChanged: false,
- listViewName: 'list.list',
// Used to avoid flashing of empty elements if the task content is not yet loaded.
visible: false,
@@ -504,13 +503,6 @@ export default {
this.task = new TaskModel()
},
mounted() {
-
- // Build the list path from the task detail name to send the user to the view they came from.
- const parts = this.$route.name.split('.')
- if (parts.length > 2 && parts[2] === 'detail') {
- this.listViewName = `list.${parts[1]}`
- }
-
this.loadTask()
},
computed: {