Skip to content

Commit

Permalink
fix export pdf
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-eyes committed Oct 23, 2024
1 parent 9343824 commit a088e34
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2636,7 +2636,7 @@ <h5 id="plot-title-display-${plotId}" class="mb-0 text-center">Plot ${plotCounte
}



function updatePlot(plotId) {
const plotDiv = document.getElementById(plotId);
const plotType = document.getElementById(`plot-type-${plotId}`).value;
Expand Down Expand Up @@ -3208,6 +3208,7 @@ <h5 id="plot-title-display-${plotId}" class="mb-0 text-center">Plot ${plotCounte
}

const assayTypeCheckboxes = document.querySelectorAll(`#assay-type-checkboxes-${plotId} input[name="assay-type-${plotId}"]:checked`);
const selectedAssayTypes = Array.from(assayTypeCheckboxes).map(checkbox => checkbox.value);
const assayTypeValue = Array.from(assayTypeCheckboxes).map(checkbox => checkbox.value).join(', ') || 'All';

currentPlotData = data.filter(row => {
Expand Down

0 comments on commit a088e34

Please sign in to comment.