Skip to content

Commit

Permalink
HMS-2584 fix: remove combobox
Browse files Browse the repository at this point in the history
As conversations, currently we remove the combobox as we only have one
type of service.

Signed-off-by: Alejandro Visiedo <[email protected]>
  • Loading branch information
avisiedo committed Oct 6, 2023
1 parent 2f31970 commit 9fdecb9
Showing 1 changed file with 1 addition and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,23 +110,7 @@ const PagePreparation = (props: PagePreparationProps) => {
Only RHEL IdM (IPA) are currently supported.
</TextContent>
}
>
<Select
id="register-domain-type"
isDisabled
isOpen={isOpen}
onSelect={onRegisterDomainTypeSelect}
// onOpenChange={(isOpen) => setIsOpen(isOpen)}
onToggle={onToggleClick}
className="pf-u-w-100 pf-u-w-50-on-md pf-u-w-50-on-xl"
>
{domainOptions.map((option) => (
<SelectOption key={option.value} value={option.value}>
{option.title}
</SelectOption>
))}
</Select>
</FormGroup>
></FormGroup>
<FormGroup label="Service prerequisites">
<ol>
<li className="pf-u-pt-sd pf-u-ml-md">
Expand Down

0 comments on commit 9fdecb9

Please sign in to comment.