From c734a8031929d02eaec44a29f589b253b78d2ba5 Mon Sep 17 00:00:00 2001 From: McNaBry Date: Thu, 14 Nov 2024 01:01:10 +0800 Subject: [PATCH] Fix panel description styling Co-authored-by: samuelim01 <61283948+samuelim01@users.noreply.github.com> --- frontend/src/app/history/history.component.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/app/history/history.component.html b/frontend/src/app/history/history.component.html index 095057bb46..9087e6a91a 100644 --- a/frontend/src/app/history/history.component.html +++ b/frontend/src/app/history/history.component.html @@ -74,7 +74,7 @@

{{ panelHistory?.question?.title }}

class="p-button-text" />
-

{{ panelHistory?.question?.description }}

+

{{ panelHistory?.question?.description }}

Submitted Solution