From 5f6fc88b9b39bd01df9fac64f6415c571dba305d Mon Sep 17 00:00:00 2001 From: "Benjamin Arntzen (aider)" Date: Thu, 27 Jun 2024 08:31:12 +0100 Subject: [PATCH] Increased the z-index of the pie chart container to ensure it is displayed on top of other elements. --- public/app.js | 1 + public/index.html | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/public/app.js b/public/app.js index 677207c..cd929af 100644 --- a/public/app.js +++ b/public/app.js @@ -37,6 +37,7 @@ function updatePieChart() { } pieChartContainer.style.display = 'block'; + pieChartContainer.style.zIndex = '9999'; const colors = Object.keys(colorDistribution); const data = colors.map(color => colorDistribution[color]); diff --git a/public/index.html b/public/index.html index 20833e0..fb95f85 100644 --- a/public/index.html +++ b/public/index.html @@ -23,7 +23,7 @@
-