From 959dfa81258ddf6db4e0c75f1211bec80e110c46 Mon Sep 17 00:00:00 2001 From: Yassir <53705290+YaRissi@users.noreply.github.com> Date: Sun, 4 Jan 2026 21:59:34 +0100 Subject: [PATCH] fix(ui): images inside coolify changelog (#7357) --- app/Services/ChangelogService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/ChangelogService.php b/app/Services/ChangelogService.php index f0887c11c..8257555a5 100644 --- a/app/Services/ChangelogService.php +++ b/app/Services/ChangelogService.php @@ -287,7 +287,7 @@ private function applyCustomStyling(string $html): string $html = preg_replace('/]*)>/', '', $html); // Convert plain URLs to clickable links (that aren't already in tags) - $html = preg_replace('/(?)(?"]+)(?![^<]*<\/a>)/', '$1', $html); + $html = preg_replace('/(?)(?"]+)(?![^<]*<\/a>)/', '$1', $html); // Strong/bold text $html = preg_replace('/]*>/', '', $html);