diff --git a/web/app/src/components/JobsTable.vue b/web/app/src/components/JobsTable.vue index ae1a6cd6..23343d01 100644 --- a/web/app/src/components/JobsTable.vue +++ b/web/app/src/components/JobsTable.vue @@ -144,13 +144,6 @@ export default { // store. There were some issues where navigating to another job would // overwrite the old job's ID, and this prevents that. const rowData = plain(row.getData()); - - // Depending on which cell was clicked, take a different action. - const columnName = event.target.getAttribute("tabulator-field"); - if (columnName == "status") { - this.toggleStatusFilter(rowData.status); - return; - } this.$emit("tableRowClicked", rowData); }, toggleStatusFilter(status) { diff --git a/web/app/src/components/TasksTable.vue b/web/app/src/components/TasksTable.vue index b629dc03..334cc784 100644 --- a/web/app/src/components/TasksTable.vue +++ b/web/app/src/components/TasksTable.vue @@ -140,13 +140,6 @@ export default { // store. There were some issues where navigating to another job would // overwrite the old job's ID, and this prevents that. const rowData = plain(row.getData()); - - // Depending on which cell was clicked, take a different action. - const columnName = event.target.getAttribute("tabulator-field"); - if (columnName == "status") { - this.toggleStatusFilter(rowData.status); - return; - } this.$emit("tableRowClicked", rowData); }, toggleStatusFilter(status) {