Skip to content
Snippets Groups Projects
Unverified Commit 93311238 authored by Jan Kessler's avatar Jan Kessler Committed by GitHub
Browse files

add whitespace after uses of shared_by string, remove the whitespace from english locale (#5468)

parent 2c320962
No related branches found
No related tags found
No related merge requests found
......@@ -57,7 +57,7 @@ export default function RoomCard({ room }) {
<Stack className="my-4">
<Card.Title className="mb-0"> { room.name } </Card.Title>
{ room.shared_owner && (
<span className="text-muted">{ t('room.shared_by') } <strong>{ room.shared_owner }</strong></span>
<span className="text-muted">{ t('room.shared_by') } {' '} <strong>{ room.shared_owner }</strong></span>
)}
{ room.last_session ? (
<span className="text-muted"> { t('room.last_session', { localizedTime }) } </span>
......
......@@ -25,7 +25,7 @@ export default function SharedBadge({ ownerName }) {
return (
<div>
<Badge className="rounded-pill shared-badge ms-2">
<span>{ t('room.shared_by')}
<span>{ t('room.shared_by')} {' '}
<strong>{ ownerName }</strong>
</span>
</Badge>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment