Wizard: Add validation to ChippingInput

This adds step validation to ChippingInput, allowing to validate imported values.
This commit is contained in:
regexowl 2025-02-04 10:39:33 +01:00 committed by Klara Simickova
parent 6ec433f9d3
commit f11ab64262
8 changed files with 160 additions and 10 deletions

View file

@ -129,7 +129,7 @@ export const isKernelArgumentValid = (arg: string) => {
return true;
}
return /^[a-zA-Z0-9=-_,"']*$/.test(arg);
return /^[a-zA-Z0-9=-_,."']*$/.test(arg);
};
export const isPortValid = (port: string) => {