Skip to content

Commit

Permalink
Merge branch 'release-2.12.x' into TASK-4989
Browse files Browse the repository at this point in the history
  • Loading branch information
gpveronica committed Nov 28, 2023
2 parents aebb341 + 9de0930 commit 641fa03
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 641fa03

Please sign in to comment.