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:
Katarina Sieklova 2025-03-11 11:32:45 +01:00 committed by Klara Simickova
parent 4b5fb301ae
commit 1d39a57391

View file

@ -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"