Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TASK-6231 - Port Patch 1.10.4.1 -> 1.10.5 #923

Merged
merged 7 commits into from
May 14, 2024
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 @@ -578,7 +578,8 @@ export default class VariantBrowserGrid extends LitElement {
});
},
align: "center",
visible: this.gridCommons.isColumnVisible(this.samples[i].id, "samples"),
visible: true,
excludeFromSettings: true,
});
}
}
Expand All @@ -604,7 +605,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
Loading