WizardV2: add 'some' word to image table toolbar title

This commit is contained in:
Michal Gold 2024-05-21 12:32:45 +03:00 committed by Klara Simickova
parent 38fe6d567f
commit 8092717197
2 changed files with 3 additions and 3 deletions

View file

@ -137,7 +137,7 @@ const ImagesTableToolbar: React.FC<imagesTableToolbarProps> = ({
'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"
/>
)}

View file

@ -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();
});