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