From ce5c3e32c19ed03476cb620d0c5bbb22dbe5ec12 Mon Sep 17 00:00:00 2001
From: 0ko <0ko@noreply.codeberg.org>
Date: Tue, 31 Dec 2024 09:39:19 +0000
Subject: [PATCH] fix(ui): use primary color for button in table modal (#6427)

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6427
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
(cherry picked from commit a3025060954fa84eb99e57ebb7393a6212efa96f)
---
 templates/shared/combomarkdowneditor.tmpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/templates/shared/combomarkdowneditor.tmpl b/templates/shared/combomarkdowneditor.tmpl
index e7bace6962..0620cca65f 100644
--- a/templates/shared/combomarkdowneditor.tmpl
+++ b/templates/shared/combomarkdowneditor.tmpl
@@ -85,7 +85,7 @@ Template Attributes:
 
 		<div class="text right actions">
 			<button class="ui cancel button" data-selector-name="cancel-button">{{ctx.Locale.Tr "cancel"}}</button>
-			<button class="ui blue button" data-selector-name="ok-button">{{ctx.Locale.Tr "ok"}}</button>
+			<button class="ui primary button" data-selector-name="ok-button">{{ctx.Locale.Tr "ok"}}</button>
 		</div>
 	</div>
 </div>