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-5296 - RD tiering form is displayed blank after portpatch 1.6.6 ->1.10.1 #833

Merged
merged 2 commits into from
Nov 27, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/webcomponents/clinical/analysis/rd-tiering-analysis.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export default class RdTieringAnalysis extends LitElement {
// Get the list of disease panels for the dropdown
let diseasePanels = [];
if (casePanelLock) {
for (const panelId of panels.split(",")) {
for (const panelId of (panels || "").split(",")) {
const diseasePanel = this.opencgaSession.study?.panels?.find(p => p.id === panelId);
if (diseasePanel) {
diseasePanels.push(diseasePanel);
Expand All @@ -177,7 +177,7 @@ export default class RdTieringAnalysis extends LitElement {
return html`
<select-field-filter
.data="${diseasePanels}"
.value=${panels}
.value=${panels || ""}
.liveSearch=${diseasePanels?.length > 5}
.multiple="${true}"
.disabled="${casePanelLock}"
Expand Down
Loading