Add some spaces around room pills in protection prompts.

This commit is contained in:
gnuxie
2024-05-22 16:35:36 +01:00
parent 48c0fec134
commit 16435bd8fc
2 changed files with 2 additions and 2 deletions
@@ -46,7 +46,7 @@ export class ProtectroomsOnInvite {
void Task((async () => {
const renderPromptProtect = (): DocumentNode =>
<root>
{renderMentionPill(invitation.sender, invitation.sender)} has invited me to
{renderMentionPill(invitation.sender, invitation.sender)} has invited me to &#32;
{renderRoomPill(candidateRoom)},
would you like to protect this room?
</root>;
@@ -73,7 +73,7 @@ export class WatchRoomsOnInvite {
private async promptWatchPolicyRoom(candidateRoom: MatrixRoomID, invitation: MembershipEvent) {
const renderPromptWatch = (): DocumentNode =>
<root>
{renderMentionPill(invitation.sender, invitation.sender)} has invited me to a policy room
{renderMentionPill(invitation.sender, invitation.sender)} has invited me to a policy room &#32;
{renderRoomPill(candidateRoom)},
would you like Draupnir to watch this room as a policy list?
</root>;