Adding some ouiaId for File system customization
This commit is contained in:
parent
1e37a6ece9
commit
4fe1242c49
3 changed files with 5 additions and 0 deletions
|
|
@ -398,6 +398,7 @@ const FileSystemConfiguration = ({ ...props }) => {
|
||||||
</TableComposable>
|
</TableComposable>
|
||||||
<TextContent>
|
<TextContent>
|
||||||
<Button
|
<Button
|
||||||
|
ouiaId="add-partition"
|
||||||
data-testid="file-system-add-partition"
|
data-testid="file-system-add-partition"
|
||||||
className="pf-u-text-align-left"
|
className="pf-u-text-align-left"
|
||||||
variant="link"
|
variant="link"
|
||||||
|
|
|
||||||
|
|
@ -64,6 +64,7 @@ const MountPoint = ({ ...props }) => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Select
|
<Select
|
||||||
|
ouiaId="mount-point"
|
||||||
className="pf-u-w-50"
|
className="pf-u-w-50"
|
||||||
isOpen={isOpen}
|
isOpen={isOpen}
|
||||||
onToggle={onToggle}
|
onToggle={onToggle}
|
||||||
|
|
@ -78,6 +79,7 @@ const MountPoint = ({ ...props }) => {
|
||||||
</Select>
|
</Select>
|
||||||
{prefix !== '/' && !prefix.startsWith('/boot') && (
|
{prefix !== '/' && !prefix.startsWith('/boot') && (
|
||||||
<TextInput
|
<TextInput
|
||||||
|
ouiaId="mount-suffix"
|
||||||
className="pf-u-w-50"
|
className="pf-u-w-50"
|
||||||
type="text"
|
type="text"
|
||||||
value={suffix}
|
value={suffix}
|
||||||
|
|
|
||||||
|
|
@ -43,6 +43,7 @@ const SizeUnit = ({ ...props }) => {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<TextInput
|
<TextInput
|
||||||
|
ouiaId="size"
|
||||||
className="pf-u-w-50"
|
className="pf-u-w-50"
|
||||||
type="text"
|
type="text"
|
||||||
value={size}
|
value={size}
|
||||||
|
|
@ -50,6 +51,7 @@ const SizeUnit = ({ ...props }) => {
|
||||||
onChange={(v) => setSize(isNaN(parseInt(v)) ? 0 : parseInt(v))}
|
onChange={(v) => setSize(isNaN(parseInt(v)) ? 0 : parseInt(v))}
|
||||||
/>
|
/>
|
||||||
<Select
|
<Select
|
||||||
|
ouiaId="unit"
|
||||||
className="pf-u-w-50"
|
className="pf-u-w-50"
|
||||||
isOpen={isOpen}
|
isOpen={isOpen}
|
||||||
onToggle={onToggle}
|
onToggle={onToggle}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue