From 7706ca2d5ff48af33dc875e4a7b18fbdfd8363a6 Mon Sep 17 00:00:00 2001 From: Herculino Trotta Date: Sun, 13 Apr 2025 00:02:23 -0300 Subject: [PATCH] fix(select): only 50 select options would be shown at a time --- frontend/src/application/select.js | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/application/select.js b/frontend/src/application/select.js index 39a65c1..a5694f2 100644 --- a/frontend/src/application/select.js +++ b/frontend/src/application/select.js @@ -6,6 +6,7 @@ window.TomSelect = function createDynamicTomSelect(element) { // Basic configuration const config = { plugins: {}, + maxOptions: null, // Extract 'create' option from data attribute create: element.dataset.create === 'true',