diff --git a/src/components/SystemsManagement.tsx b/src/components/SystemsManagement.tsx index bda07fb..d200eb6 100644 --- a/src/components/SystemsManagement.tsx +++ b/src/components/SystemsManagement.tsx @@ -114,7 +114,7 @@ const SystemsManagement: React.FC = ({ token, logoutUser type: newSystemData.type, location: newSystemData.location, description: newSystemData.description || undefined, - frequencies: newSystemData.frequencies.split(',').map(f => parseInt(f.trim())).filter(f => !isNaN(f)), + frequencies: newSystemData.frequencies.split(',').map(f => parseFloat(f.trim())).filter(f => !isNaN(f)), avail_on_nodes: newSystemData.avail_on_nodes.split(',').map(node => node.trim()).filter(node => node), tags: parsedTags, whitelist: newSystemData.whitelist.split(',').map(w => parseInt(w.trim())).filter(w => !isNaN(w)),