From 8092717197cd6d2160a12d19fe90f880ae73dadb Mon Sep 17 00:00:00 2001 From: Michal Gold Date: Tue, 21 May 2024 12:32:45 +0300 Subject: [PATCH] WizardV2: add 'some' word to image table toolbar title --- src/Components/ImagesTable/ImagesTableToolbar.tsx | 2 +- src/test/Components/Blueprints/Blueprints.test.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Components/ImagesTable/ImagesTableToolbar.tsx b/src/Components/ImagesTable/ImagesTableToolbar.tsx index 93d9cdbb..283a1755 100644 --- a/src/Components/ImagesTable/ImagesTableToolbar.tsx +++ b/src/Components/ImagesTable/ImagesTableToolbar.tsx @@ -137,7 +137,7 @@ const ImagesTableToolbar: React.FC = ({ '0 var(--pf-v5-c-toolbar__content--PaddingRight) 0 var(--pf-v5-c-toolbar__content--PaddingLeft)', }} isInline - title={`The selected blueprint is at version ${selectedBlueprintVersion}, images are at version ${latestImageVersion}. Build images to synchronize with the latest version.`} + title={`The selected blueprint is at version ${selectedBlueprintVersion}, the latest images are at version ${latestImageVersion}. Build images to synchronize with the latest version.`} ouiaId="blueprint-out-of-sync-alert" /> )} diff --git a/src/test/Components/Blueprints/Blueprints.test.tsx b/src/test/Components/Blueprints/Blueprints.test.tsx index 40d6624a..b65b706e 100644 --- a/src/test/Components/Blueprints/Blueprints.test.tsx +++ b/src/test/Components/Blueprints/Blueprints.test.tsx @@ -109,13 +109,13 @@ describe('Blueprints', () => { await selectBlueprintById(blueprintIdOutOfSync); await screen.findByText( - 'The selected blueprint is at version 2, images are at version 1. Build images to synchronize with the latest version.' + 'The selected blueprint is at version 2, the latest images are at version 1. Build images to synchronize with the latest version.' ); await selectBlueprintById(blueprintIdWithComposes); expect( screen.queryByText( - 'The selected blueprint is at version 2, images are at version 1. Build images to synchronize with the latest version.' + 'The selected blueprint is at version 2, the latest images are at version 1. Build images to synchronize with the latest version.' ) ).not.toBeInTheDocument(); });