CreateImageWizard: hide package group alert in cockpit plugin
Searching for groups isn't possible sadly, as the search works slightly differently than content sources. Replace the alert with an alert on how to use globbing.
This commit is contained in:
parent
62a772198c
commit
fea03a8c72
1 changed files with 13 additions and 5 deletions
|
|
@ -19,11 +19,19 @@ const PackagesStep = () => {
|
|||
Additional packages
|
||||
</Title>
|
||||
<Text>Blueprints created with Images include all required packages.</Text>
|
||||
<Alert variant="info" isInline title="Search for package groups">
|
||||
Search for package groups by starting your search with the '@'
|
||||
character. A single '@' as search input lists all available
|
||||
package groups.
|
||||
</Alert>
|
||||
{!process.env.IS_ON_PREMISE && (
|
||||
<Alert variant="info" isInline title="Search for package groups">
|
||||
Search for package groups by starting your search with the
|
||||
'@' character. A single '@' as search input lists
|
||||
all available package groups.
|
||||
</Alert>
|
||||
)}
|
||||
{process.env.IS_ON_PREMISE && (
|
||||
<Alert variant="info" isInline title="Searching for packages">
|
||||
Search for exact matches by specifying the whole package name, or glob
|
||||
using asterisk wildcards (*) before or after the package name.
|
||||
</Alert>
|
||||
)}
|
||||
<Packages />
|
||||
{packageRecommendationsFlag &&
|
||||
(distribution === RHEL_8 || distribution === RHEL_9) && (
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue