From c352114764349f98793030ccab3e15f16112e9c1 Mon Sep 17 00:00:00 2001 From: frankknoll Date: Sat, 28 Jan 2023 23:22:25 +0100 Subject: [PATCH] displaying batchcode --- docs/HistogramView.js | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/HistogramView.js b/docs/HistogramView.js index fe2336a4a2c..51723ee5bb9 100644 --- a/docs/HistogramView.js +++ b/docs/HistogramView.js @@ -23,6 +23,7 @@ class HistogramView { } #displayHistograms(histoDescrs) { + this.#uiContainer.appendChild(document.createTextNode(histoDescrs.batchcode)); for (const histoDescr of histoDescrs.histograms) { this.#uiContainer.appendChild(this.#createHistogram(histoDescr).canvas); }