Frontend WASM compilado + fixes PartialEq + uuid js feature
Build & Deploy NutriApp / build-and-deploy (push) Failing after 7m12s

This commit is contained in:
2026-06-27 02:40:53 +01:00
parent 7dc3050519
commit 0238518822
15 changed files with 6686 additions and 8 deletions
@@ -0,0 +1,12 @@
export function get_select_data(select) {
let values = [];
for (let i = 0; i < select.options.length; i++) {
let option = select.options[i];
if (option.selected) {
values.push(option.value.toString());
}
}
return values;
}