From 91577343dfb7d3545c941f3b55ae700a4f65a964 Mon Sep 17 00:00:00 2001 From: regexowl Date: Mon, 19 May 2025 14:05:42 +0200 Subject: [PATCH] src: Update `` tag components --- .../CreateImageWizard/steps/Details/index.tsx | 2 +- .../FileSystemAutomaticPartitionInformation.tsx | 2 +- .../steps/FileSystem/FileSystemConfiguration.tsx | 4 ++-- .../steps/FileSystem/FileSystemTable.tsx | 2 +- .../CreateImageWizard/steps/FileSystem/index.tsx | 2 +- .../CreateImageWizard/steps/Firewall/index.tsx | 4 +--- .../CreateImageWizard/steps/FirstBoot/index.tsx | 4 ++-- .../CreateImageWizard/steps/Hostname/index.tsx | 2 +- .../steps/ImageOutput/TargetEnvironment.tsx | 8 ++++---- .../CreateImageWizard/steps/ImageOutput/index.tsx | 2 +- .../CreateImageWizard/steps/Kernel/index.tsx | 4 +--- .../CreateImageWizard/steps/Locale/index.tsx | 2 +- .../CreateImageWizard/steps/Oscap/index.tsx | 2 +- .../steps/Packages/PackageRecommendations.tsx | 4 ++-- .../CreateImageWizard/steps/Packages/Packages.tsx | 4 +--- .../components/PackageInfoNotAvailablePopover.tsx | 4 ++-- .../steps/Packages/components/RepoPopovers.tsx | 4 ++-- .../CreateImageWizard/steps/Packages/index.tsx | 2 +- .../Registration/ActivationKeyInformation.tsx | 2 +- .../steps/Registration/ActivationKeysList.tsx | 2 +- .../steps/Registration/Registration.tsx | 4 ++-- .../Registration/components/PopoverActivation.tsx | 8 +++----- .../steps/Registration/index.tsx | 2 +- .../components/UploadRepositoryLabel.tsx | 2 +- .../steps/Repositories/index.tsx | 2 +- .../CreateImageWizard/steps/Review/index.tsx | 4 +--- .../CreateImageWizard/steps/Services/index.tsx | 4 +--- .../CreateImageWizard/steps/Snapshot/Snapshot.tsx | 4 ++-- .../CreateImageWizard/steps/Snapshot/index.tsx | 2 +- .../steps/TargetEnvironment/Aws/index.tsx | 4 ++-- .../steps/TargetEnvironment/Azure/index.tsx | 4 ++-- .../steps/TargetEnvironment/Gcp/index.tsx | 15 +++++++++++---- .../CreateImageWizard/steps/Timezone/index.tsx | 2 +- .../CreateImageWizard/steps/Users/index.tsx | 2 +- src/Components/ImagesTable/EmptyState.tsx | 8 ++++---- src/Components/LandingPage/LandingPage.tsx | 8 ++++---- src/Components/LandingPage/NewAlert.tsx | 2 +- .../sharedComponents/ImageBuilderHeader.tsx | 6 +++--- 38 files changed, 70 insertions(+), 75 deletions(-) diff --git a/src/Components/CreateImageWizard/steps/Details/index.tsx b/src/Components/CreateImageWizard/steps/Details/index.tsx index 76f5c347..eaaeba42 100644 --- a/src/Components/CreateImageWizard/steps/Details/index.tsx +++ b/src/Components/CreateImageWizard/steps/Details/index.tsx @@ -48,7 +48,7 @@ const DetailsStep = () => { Details - + Enter a name to identify your blueprint. If no name is entered, the images created from this blueprint will use the name of the parent blueprint. diff --git a/src/Components/CreateImageWizard/steps/FileSystem/FileSystemAutomaticPartitionInformation.tsx b/src/Components/CreateImageWizard/steps/FileSystem/FileSystemAutomaticPartitionInformation.tsx index 0cc160f2..fcdd8213 100644 --- a/src/Components/CreateImageWizard/steps/FileSystem/FileSystemAutomaticPartitionInformation.tsx +++ b/src/Components/CreateImageWizard/steps/FileSystem/FileSystemAutomaticPartitionInformation.tsx @@ -9,7 +9,7 @@ const FileSystemAutomaticPartition = () => { return ( Automatic partitioning - + The system automatically partitions your image storage depending on the target environment(s). The target environment sometimes dictates all or part of the partitioning scheme. Automatic partitioning applies the most diff --git a/src/Components/CreateImageWizard/steps/FileSystem/FileSystemConfiguration.tsx b/src/Components/CreateImageWizard/steps/FileSystem/FileSystemConfiguration.tsx index 2f9d72e4..12036d17 100644 --- a/src/Components/CreateImageWizard/steps/FileSystem/FileSystemConfiguration.tsx +++ b/src/Components/CreateImageWizard/steps/FileSystem/FileSystemConfiguration.tsx @@ -48,12 +48,12 @@ const FileSystemConfiguration = () => { partition?.mountpoint?.includes('/usr') ) && } - + Create partitions for your image by defining mount points and minimum sizes. Image builder creates partitions with a logical volume (LVM) device type. - + The order of partitions may change when the image is installed in order to conform to best practices and ensure functionality.

diff --git a/src/Components/CreateImageWizard/steps/FileSystem/FileSystemTable.tsx b/src/Components/CreateImageWizard/steps/FileSystem/FileSystemTable.tsx index 4db1f936..abd6dfeb 100644 --- a/src/Components/CreateImageWizard/steps/FileSystem/FileSystemTable.tsx +++ b/src/Components/CreateImageWizard/steps/FileSystem/FileSystemTable.tsx @@ -46,7 +46,7 @@ export const MinimumSizePopover = () => { maxWidth="30rem" bodyContent={ - + Image Builder may extend this size based on requirements, selected packages, and configurations. diff --git a/src/Components/CreateImageWizard/steps/FileSystem/index.tsx b/src/Components/CreateImageWizard/steps/FileSystem/index.tsx index 555fd8ae..8de14e58 100644 --- a/src/Components/CreateImageWizard/steps/FileSystem/index.tsx +++ b/src/Components/CreateImageWizard/steps/FileSystem/index.tsx @@ -22,7 +22,7 @@ const FileSystemStep = () => { File system configuration - Define the partitioning of the image. + Define the partitioning of the image. {hasIsoTargetOnly ? ( ) : fileSystemConfigurationType === 'automatic' ? ( diff --git a/src/Components/CreateImageWizard/steps/Firewall/index.tsx b/src/Components/CreateImageWizard/steps/Firewall/index.tsx index a9cee7a9..2211371d 100644 --- a/src/Components/CreateImageWizard/steps/Firewall/index.tsx +++ b/src/Components/CreateImageWizard/steps/Firewall/index.tsx @@ -11,9 +11,7 @@ const FirewallStep = () => { Firewall - - Customize firewall settings for your image. - + Customize firewall settings for your image. diff --git a/src/Components/CreateImageWizard/steps/FirstBoot/index.tsx b/src/Components/CreateImageWizard/steps/FirstBoot/index.tsx index b558ec8d..3cd93eae 100644 --- a/src/Components/CreateImageWizard/steps/FirstBoot/index.tsx +++ b/src/Components/CreateImageWizard/steps/FirstBoot/index.tsx @@ -52,7 +52,7 @@ const FirstBootStep = () => { First boot configuration - + Configure the image with a custom script that will execute on its first boot. @@ -62,7 +62,7 @@ const FirstBootStep = () => { isInline title="Important: please do not include sensitive information" > - + Please ensure that your script does not contain any secrets, passwords, or other sensitive data. All scripts should be crafted without including confidential information to maintain security and diff --git a/src/Components/CreateImageWizard/steps/Hostname/index.tsx b/src/Components/CreateImageWizard/steps/Hostname/index.tsx index f0fecb3d..49c91048 100644 --- a/src/Components/CreateImageWizard/steps/Hostname/index.tsx +++ b/src/Components/CreateImageWizard/steps/Hostname/index.tsx @@ -10,7 +10,7 @@ const HostnameStep = () => { Hostname - Select a hostname for your image. + Select a hostname for your image. ); diff --git a/src/Components/CreateImageWizard/steps/ImageOutput/TargetEnvironment.tsx b/src/Components/CreateImageWizard/steps/ImageOutput/TargetEnvironment.tsx index c0db28cc..7de6dbed 100644 --- a/src/Components/CreateImageWizard/steps/ImageOutput/TargetEnvironment.tsx +++ b/src/Components/CreateImageWizard/steps/ImageOutput/TargetEnvironment.tsx @@ -255,7 +255,7 @@ const TargetEnvironment = () => { position="right" bodyContent={ - + An OVA file is a virtual appliance used by virtualization platforms such as VMware vSphere. It is a package that contains files @@ -303,7 +303,7 @@ const TargetEnvironment = () => { position="right" bodyContent={ - + A VMDK file is a virtual disk that stores the contents of a virtual machine. This disk has to be imported into vSphere using govc import.vmdk, @@ -379,14 +379,14 @@ const TargetEnvironment = () => { position="right" headerContent={ - + WSL is not officially supported by Red Hat } bodyContent={ - + You can use RHEL on Microsoft's Windows Subsystem for Linux (WSL) for development and learning use cases. Red Hat supports WSL under the Validated Software diff --git a/src/Components/CreateImageWizard/steps/ImageOutput/index.tsx b/src/Components/CreateImageWizard/steps/ImageOutput/index.tsx index ab28206d..02c9315e 100644 --- a/src/Components/CreateImageWizard/steps/ImageOutput/index.tsx +++ b/src/Components/CreateImageWizard/steps/ImageOutput/index.tsx @@ -38,7 +38,7 @@ const ImageOutputStep = () => { Image output - + Images enables you to create customized blueprints, create custom images from the blueprints, and push them to target environments.
diff --git a/src/Components/CreateImageWizard/steps/Kernel/index.tsx b/src/Components/CreateImageWizard/steps/Kernel/index.tsx index bb864f44..a857b36a 100644 --- a/src/Components/CreateImageWizard/steps/Kernel/index.tsx +++ b/src/Components/CreateImageWizard/steps/Kernel/index.tsx @@ -11,9 +11,7 @@ const KernelStep = () => { Kernel - - Customize kernel name and kernel arguments. - + Customize kernel name and kernel arguments. diff --git a/src/Components/CreateImageWizard/steps/Locale/index.tsx b/src/Components/CreateImageWizard/steps/Locale/index.tsx index 9a618425..45dd26d2 100644 --- a/src/Components/CreateImageWizard/steps/Locale/index.tsx +++ b/src/Components/CreateImageWizard/steps/Locale/index.tsx @@ -11,7 +11,7 @@ const LocaleStep = () => { Locale - Select the locale for your image. + Select the locale for your image. diff --git a/src/Components/CreateImageWizard/steps/Oscap/index.tsx b/src/Components/CreateImageWizard/steps/Oscap/index.tsx index 99f1404c..1c096cfe 100644 --- a/src/Components/CreateImageWizard/steps/Oscap/index.tsx +++ b/src/Components/CreateImageWizard/steps/Oscap/index.tsx @@ -114,7 +114,7 @@ const OscapContent = () => { {complianceEnabled ? 'Compliance' : 'OpenSCAP profile'} - + Below you can select which Insights compliance policy or OpenSCAP profile your image will be compliant to. Insights compliance allows the use of tailored policies, whereas OpenSCAP gives you the default diff --git a/src/Components/CreateImageWizard/steps/Packages/PackageRecommendations.tsx b/src/Components/CreateImageWizard/steps/Packages/PackageRecommendations.tsx index 5d82df3e..9a8eb047 100644 --- a/src/Components/CreateImageWizard/steps/Packages/PackageRecommendations.tsx +++ b/src/Components/CreateImageWizard/steps/Packages/PackageRecommendations.tsx @@ -170,7 +170,7 @@ const PackageRecommendations = () => { onHide={() => setIsExpanded(false)} bodyContent={ - + RHEL Lightspeed provides intelligent tools to improve the productivity and efficiency of teams using RHEL. @@ -209,7 +209,7 @@ const PackageRecommendations = () => { {isSuccess && data && data?.packages && ( <> - + Other users commonly add these packages with the ones you selected. diff --git a/src/Components/CreateImageWizard/steps/Packages/Packages.tsx b/src/Components/CreateImageWizard/steps/Packages/Packages.tsx index 1459a4f5..35fbf67c 100644 --- a/src/Components/CreateImageWizard/steps/Packages/Packages.tsx +++ b/src/Components/CreateImageWizard/steps/Packages/Packages.tsx @@ -1189,9 +1189,7 @@ const Packages = () => { ) : ( - - This group has no packages - + This group has no packages )} } diff --git a/src/Components/CreateImageWizard/steps/Packages/components/PackageInfoNotAvailablePopover.tsx b/src/Components/CreateImageWizard/steps/Packages/components/PackageInfoNotAvailablePopover.tsx index 7e748080..62e77a96 100644 --- a/src/Components/CreateImageWizard/steps/Packages/components/PackageInfoNotAvailablePopover.tsx +++ b/src/Components/CreateImageWizard/steps/Packages/components/PackageInfoNotAvailablePopover.tsx @@ -9,10 +9,10 @@ const PackageInfoNotAvailablePopover = () => { headerContent="Package description" bodyContent={ - + The package description provides more information about the package. - + When editing an existing blueprint, you may see a "Not available" value in the field because information about previously added packages can not be fetched. diff --git a/src/Components/CreateImageWizard/steps/Packages/components/RepoPopovers.tsx b/src/Components/CreateImageWizard/steps/Packages/components/RepoPopovers.tsx index ef5aa18e..6a099b14 100644 --- a/src/Components/CreateImageWizard/steps/Packages/components/RepoPopovers.tsx +++ b/src/Components/CreateImageWizard/steps/Packages/components/RepoPopovers.tsx @@ -8,7 +8,7 @@ export const IncludedReposPopover = () => { - + View packages from the Red Hat repository and repositories you've selected. @@ -33,7 +33,7 @@ export const OtherReposPopover = () => { - + View packages from popular repositories and your other repositories not included in the image. diff --git a/src/Components/CreateImageWizard/steps/Packages/index.tsx b/src/Components/CreateImageWizard/steps/Packages/index.tsx index c280051d..f522b967 100644 --- a/src/Components/CreateImageWizard/steps/Packages/index.tsx +++ b/src/Components/CreateImageWizard/steps/Packages/index.tsx @@ -16,7 +16,7 @@ const PackagesStep = () => { Additional packages - + Blueprints created with Images include all required packages. {!process.env.IS_ON_PREMISE && ( diff --git a/src/Components/CreateImageWizard/steps/Registration/ActivationKeyInformation.tsx b/src/Components/CreateImageWizard/steps/Registration/ActivationKeyInformation.tsx index 4a7a6369..bd4f7b03 100644 --- a/src/Components/CreateImageWizard/steps/Registration/ActivationKeyInformation.tsx +++ b/src/Components/CreateImageWizard/steps/Registration/ActivationKeyInformation.tsx @@ -54,7 +54,7 @@ const ActivationKeyInformation = (): JSX.Element => { - + The core repositories for your operating system version are always enabled and do not need to be explicitly added to the activation key. diff --git a/src/Components/CreateImageWizard/steps/Registration/ActivationKeysList.tsx b/src/Components/CreateImageWizard/steps/Registration/ActivationKeysList.tsx index bdf1b3b8..cb308c86 100644 --- a/src/Components/CreateImageWizard/steps/Registration/ActivationKeysList.tsx +++ b/src/Components/CreateImageWizard/steps/Registration/ActivationKeysList.tsx @@ -262,7 +262,7 @@ const ActivationKeysList = () => { {prepareSelectOptions()} - + Create and manage activation keys on the diff --git a/src/Components/CreateImageWizard/steps/Registration/Registration.tsx b/src/Components/CreateImageWizard/steps/Registration/Registration.tsx index 896236ed..66799279 100644 --- a/src/Components/CreateImageWizard/steps/Registration/Registration.tsx +++ b/src/Components/CreateImageWizard/steps/Registration/Registration.tsx @@ -27,7 +27,7 @@ const InsightsPopover = () => { minWidth="30rem" bodyContent={ - + Red Hat Insights client provides actionable intelligence about your Red Hat Enterprise Linux environments, helping to identify and address operational and vulnerability risks before an issue results @@ -66,7 +66,7 @@ const RhcPopover = () => { minWidth="30rem" bodyContent={ - + Remote host configuration allows Red Hat Enterprise Linux hosts to connect to Red Hat Insights. Remote host configuration is required to use the Red Hat Insights Remediations service. diff --git a/src/Components/CreateImageWizard/steps/Registration/components/PopoverActivation.tsx b/src/Components/CreateImageWizard/steps/Registration/components/PopoverActivation.tsx index 612bd113..cf25e94c 100644 --- a/src/Components/CreateImageWizard/steps/Registration/components/PopoverActivation.tsx +++ b/src/Components/CreateImageWizard/steps/Registration/components/PopoverActivation.tsx @@ -22,18 +22,16 @@ const PopoverActivation = () => { maxWidth="35rem" bodyContent={ - + Activation keys enable you to register a system with appropriate subscriptions, system purpose, and repositories attached. - + If using an activation key with command line registration, you must provide your organization's ID. {orgId ? ( - - Your organization's ID is {orgId} - + Your organization's ID is {orgId} ) : ( )} diff --git a/src/Components/CreateImageWizard/steps/Registration/index.tsx b/src/Components/CreateImageWizard/steps/Registration/index.tsx index 7e499910..8176b8ba 100644 --- a/src/Components/CreateImageWizard/steps/Registration/index.tsx +++ b/src/Components/CreateImageWizard/steps/Registration/index.tsx @@ -21,7 +21,7 @@ const RegistrationStep = () => { Register systems using this image - + You can either automatically register your systems with Red Hat to enhance security and track your spending or choose to register your system during initial boot. diff --git a/src/Components/CreateImageWizard/steps/Repositories/components/UploadRepositoryLabel.tsx b/src/Components/CreateImageWizard/steps/Repositories/components/UploadRepositoryLabel.tsx index 668b4fd2..047bacfc 100644 --- a/src/Components/CreateImageWizard/steps/Repositories/components/UploadRepositoryLabel.tsx +++ b/src/Components/CreateImageWizard/steps/Repositories/components/UploadRepositoryLabel.tsx @@ -9,7 +9,7 @@ const UploadRepositoryLabel = () => { return ( + Upload repository: Snapshots will only be taken when new content is uploaded.  - +