Wizard: Rename ChippingInput to LabelInput

This just renames `ChippingInput` component to `LabelInput` and updates all imports.
This commit is contained in:
regexowl 2025-03-04 08:41:38 +01:00 committed by Lucas Garfield
parent 5f3a3744c5
commit ba233f2c69
6 changed files with 17 additions and 17 deletions

View file

@ -11,7 +11,7 @@ import {
selectDistribution,
selectKernel,
} from '../../../../../store/wizardSlice';
import ChippingInput from '../../../ChippingInput';
import LabelInput from '../../../LabelInput';
import { useKernelValidation } from '../../../utilities/useValidation';
import { isKernelArgumentValid } from '../../../validators';
@ -40,7 +40,7 @@ const KernelArguments = () => {
return (
<FormGroup isRequired={false} label="Append">
<ChippingInput
<LabelInput
ariaLabel="Add kernel argument"
placeholder="Add kernel argument"
validator={isKernelArgumentValid}