From 8d14193ed35102ec958c4209de6371efaf6e2b6c Mon Sep 17 00:00:00 2001 From: STEINNI Date: Sat, 18 Oct 2025 18:59:28 +0000 Subject: [PATCH] big fix in bzselect --- buildoz.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildoz.js b/buildoz.js index 4e6d1fc..207ed71 100644 --- a/buildoz.js +++ b/buildoz.js @@ -93,7 +93,7 @@ class BZselect extends Buildoz { addOption(value, markup){ const opt = document.createElement('option') - opt.setAttribute(value, value) + opt.setAttribute('value', value) opt.innerHTML = markup opt.addEventListener('click',this.onClick.bind(this)) this.append(opt)