mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 16:34:02 +01:00
Fix formatting issue in performer dialog (#3252)
This commit is contained in:
parent
2064ea27b0
commit
78bb2d8425
1 changed files with 3 additions and 1 deletions
|
|
@ -106,7 +106,9 @@ const PerformerModal: React.FC<IPerformerModalProps> = ({
|
||||||
</strong>
|
</strong>
|
||||||
</div>
|
</div>
|
||||||
{truncate ? (
|
{truncate ? (
|
||||||
<TruncatedText className="col-7" text={text} />
|
<div className="col-7">
|
||||||
|
<TruncatedText text={text} />
|
||||||
|
</div>
|
||||||
) : (
|
) : (
|
||||||
<span className="col-7">{text}</span>
|
<span className="col-7">{text}</span>
|
||||||
)}
|
)}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue