ImagesTable: Increase font size of text in Status column

Fixes #808. This removes the `<small>` tag around status message to unify the font size within the table.
This commit is contained in:
regexowl 2022-09-20 13:33:06 +02:00 committed by Klara Simickova
parent a3afc562c8
commit 45d0db3f04

View file

@ -63,7 +63,7 @@ const ImageBuildStatus = (props) => {
messages[props.status].map((message, key) => (
<Flex key={key} className="pf-u-align-items-baseline pf-m-nowrap">
<div className="pf-u-mr-sm">{message.icon}</div>
<small>{message.text}</small>
{message.text}
</Flex>
))}
</React.Fragment>