From e961567e062ea6ef06048775d74dfefd3084022f Mon Sep 17 00:00:00 2001 From: HongKee Moon <moon@mpi-cbg.de> Date: Wed, 2 Feb 2022 15:04:53 +0100 Subject: [PATCH] Close dd-code-team/dd-code-web#41: Protein count on Condensate List Page and Detail Page doesn't match --- web/src/components/DataTable.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/DataTable.vue b/web/src/components/DataTable.vue index d77217c..03129bd 100644 --- a/web/src/components/DataTable.vue +++ b/web/src/components/DataTable.vue @@ -161,7 +161,7 @@ { title: 'No. Proteins', render: function ( data, type, row, meta ) { - return row.proteins.length; + return row.protein_count; } }, { -- GitLab