Wizard: Add validation to ChippingInput
This adds step validation to ChippingInput, allowing to validate imported values.
This commit is contained in:
parent
6ec433f9d3
commit
f11ab64262
8 changed files with 160 additions and 10 deletions
|
|
@ -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) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue