From 290e8b982a1b37790a925ca872f67568ec5802c8 Mon Sep 17 00:00:00 2001 From: thedrewen Date: Mon, 3 Nov 2025 18:32:35 +0100 Subject: [PATCH] feat(status): enhance website status message with globe icon and separator --- src/services/status.service.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/services/status.service.ts b/src/services/status.service.ts index 33bb67a..32bc724 100644 --- a/src/services/status.service.ts +++ b/src/services/status.service.ts @@ -304,7 +304,9 @@ export class StatusService { ) }); - container.addTextDisplayComponents((text) => text.setContent(`Website Status : https://statut.protojx.com/\n${live ? 'Last update : ' : ''} - Receive automatic notifications when there is an outage with /follow !`)); + container.addSeparatorComponents((s) => s); + + container.addTextDisplayComponents((text) => text.setContent(`:globe_with_meridians: Website Status : https://statut.protojx.com/\n${live ? 'Last update : ' : ''} - Receive automatic notifications when there is an outage with /follow !`)); return container; }