mirror of
https://github.com/element-hq/element-web
synced 2024-11-27 19:56:47 +03:00
Move toast detail to a new line
This commit is contained in:
parent
4a883f2e88
commit
9aa1daa3e1
1 changed files with 4 additions and 3 deletions
|
@ -40,13 +40,14 @@ const GenericToast: React.FC<XOR<IPropsExtended, IProps>> = ({
|
|||
onAccept,
|
||||
onReject,
|
||||
}) => {
|
||||
const detailContent = detail ? <span className="mx_Toast_detail">
|
||||
const detailContent = detail ? <div className="mx_Toast_detail">
|
||||
{detail}
|
||||
</span> : null;
|
||||
</div> : null;
|
||||
|
||||
return <div>
|
||||
<div className="mx_Toast_description">
|
||||
{description} {detailContent}
|
||||
{description}
|
||||
{detailContent}
|
||||
</div>
|
||||
<div className="mx_Toast_buttons" aria-live="off">
|
||||
{onReject && rejectLabel && <FormButton label={rejectLabel} kind="danger" onClick={onReject} /> }
|
||||
|
|
Loading…
Reference in a new issue