Fix formatting issue in performer dialog (#3252)

This commit is contained in:
WithoutPants 2022-12-09 08:01:28 +11:00 committed by GitHub
parent 2064ea27b0
commit 78bb2d8425
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -106,7 +106,9 @@ const PerformerModal: React.FC<IPerformerModalProps> = ({
</strong>
</div>
{truncate ? (
<TruncatedText className="col-7" text={text} />
<div className="col-7">
<TruncatedText text={text} />
</div>
) : (
<span className="col-7">{text}</span>
)}