1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-24 07:49:41 +02:00

EE-2681 fix(docker): fix message format (#7784)

This commit is contained in:
Rex Wang 2022-10-05 09:20:00 +08:00 committed by GitHub
parent 1722257d68
commit 66fd039933
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 30 additions and 18 deletions

View file

@ -27,13 +27,15 @@ export function TextTip({
}
return (
<p className="text-muted small vertical-center">
<Icon
icon="alert-circle"
feather
className={clsx(`${iconClass}`, 'space-right')}
/>
{children}
<p className="small vertical-center">
<i className="icon-container">
<Icon
icon="alert-circle"
feather
className={clsx(`${iconClass}`, 'space-right')}
/>
</i>
<span className="text-muted">{children}</span>
</p>
);
}