diff --git a/web_interface/static/v3/plugins_manager.js b/web_interface/static/v3/plugins_manager.js index 631a9c36..f6a43057 100644 --- a/web_interface/static/v3/plugins_manager.js +++ b/web_interface/static/v3/plugins_manager.js @@ -3002,7 +3002,7 @@ function generateFieldHtml(key, prop, value, prefix = '') { const labels = xOptions.labels || {}; html += `
`; - enumItems.forEach(option => { + enumItems.forEach((option, index) => { const isChecked = arrayValue.includes(option); const label = labels[option] || option.replace(/_/g, ' ').replace(/\b\w/g, l => l.toUpperCase()); const checkboxId = `${fullKey.replace(/\./g, '_')}_${option}`; @@ -3010,7 +3010,7 @@ function generateFieldHtml(key, prop, value, prefix = '') {