Skip to content

Commit

Permalink
Restore extra phenotype columns to association table (#765)
Browse files Browse the repository at this point in the history
fixes #764
  • Loading branch information
kevinschaper authored Jul 26, 2024
1 parent 164aaf1 commit 203573d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions frontend/src/pages/node/AssociationsTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -203,11 +203,9 @@ const cols = computed((): Cols<Datum> => {
heading: "Taxon",
});

console.log(props);
/** phenotype specific columns */
if (
props.category.label === "Phenotypes" ||
props.node.category === "biolink:PhenotypicFeature"
) {
if (props.category.id.includes("PhenotypicFeature")) {
extraCols.push(
{
slot: "frequency",
Expand Down

0 comments on commit 203573d

Please sign in to comment.