Blueprints: hiding unused activation key in when editing Blueprint
Fixed #2960 The Select dropdown in Registration wizard step no longer shows activation key when user decides to register later.
This commit is contained in:
parent
4b5fb301ae
commit
1d39a57391
1 changed files with 3 additions and 1 deletions
|
|
@ -241,7 +241,9 @@ const ActivationKeysList = () => {
|
|||
variant={SelectVariant.typeahead}
|
||||
onToggle={handleToggle}
|
||||
onSelect={setActivationKey}
|
||||
selections={activationKey}
|
||||
selections={
|
||||
registrationType === 'register-later' ? '' : activationKey
|
||||
}
|
||||
isOpen={isOpen}
|
||||
placeholderText="Select activation key"
|
||||
typeAheadAriaLabel="Select activation key"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue