WizardV2: add 'some' word to image table toolbar title
This commit is contained in:
parent
38fe6d567f
commit
8092717197
2 changed files with 3 additions and 3 deletions
|
|
@ -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"
|
||||
/>
|
||||
)}
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue