Skip to content

Commit

Permalink
Merge pull request #914 from opencb/TASK-6144
Browse files Browse the repository at this point in the history
TASK-6144 - Sample column and cohort visualisation issues in the Variant Browser
  • Loading branch information
jmjuanes authored May 3, 2024
2 parents af4f23c + 1ab719b commit 7a2c6ff
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/webcomponents/variant/variant-browser-grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,8 @@ export default class VariantBrowserGrid extends LitElement {
});
},
align: "center",
visible: this.gridCommons.isColumnVisible(this.samples[i].id, "samples"),
visible: true,
excludeFromSettings: true,
});
}
}
Expand All @@ -603,7 +604,8 @@ export default class VariantBrowserGrid extends LitElement {
formatter: this.cohortFormatter,
align: "center",
eligible: true,
visible: this.gridCommons.isColumnVisible(study.id, "cohorts"),
visible: true,
excludeFromSettings: true,
});
}
}
Expand Down

0 comments on commit 7a2c6ff

Please sign in to comment.