From 2237cf97b648f55cf612da1f203bb82a27c23fec Mon Sep 17 00:00:00 2001 From: Kexy Biscuit Date: Fri, 19 Jul 2024 22:14:56 +0800 Subject: [PATCH] feat: add space after the emoji For better searching experience on Telegram. --- server/src/formatter.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/formatter.rs b/server/src/formatter.rs index dcd84f4..6becadf 100644 --- a/server/src/formatter.rs +++ b/server/src/formatter.rs @@ -2,8 +2,8 @@ use crate::models::{Job, Pipeline}; use common::JobOk; use std::borrow::Cow; -pub const SUCCESS: &str = "✅️"; -pub const FAILED: &str = "❌"; +pub const SUCCESS: &str = "✅️ "; +pub const FAILED: &str = "❌ "; pub fn to_html_new_pipeline_summary( pipeline_id: i32,