From eb82a6b72b388d8700375fa046bc86179cb5ca32 Mon Sep 17 00:00:00 2001 From: Jakub Rusz Date: Mon, 15 Apr 2024 18:31:07 +0200 Subject: [PATCH] V2Wizard: Add ouiaId to ValidatedTextInput --- src/Components/CreateImageWizardV2/ValidatedTextInput.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Components/CreateImageWizardV2/ValidatedTextInput.tsx b/src/Components/CreateImageWizardV2/ValidatedTextInput.tsx index f8be08f0..b907820c 100644 --- a/src/Components/CreateImageWizardV2/ValidatedTextInput.tsx +++ b/src/Components/CreateImageWizardV2/ValidatedTextInput.tsx @@ -9,6 +9,7 @@ import { interface ValidatedTextInputPropTypes extends TextInputProps { dataTestId?: string | undefined; + ouiaId?: string; ariaLabel: string | undefined; helperText: string | undefined; validator: (value: string | undefined) => Boolean; @@ -18,6 +19,7 @@ interface ValidatedTextInputPropTypes extends TextInputProps { export const ValidatedTextInput = ({ dataTestId, + ouiaId, ariaLabel, helperText, validator, @@ -44,6 +46,7 @@ export const ValidatedTextInput = ({