From 9f7233cb88fd1de58fe62aee863e30464b53a69f Mon Sep 17 00:00:00 2001 From: grimsi <9295182+grimsi@users.noreply.github.com> Date: Thu, 15 May 2025 14:09:53 +0200 Subject: [PATCH] Allow HTML in the game summary since Steam summaries usually contains HTML elements --- gameyfin/src/main/frontend/views/GameView.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gameyfin/src/main/frontend/views/GameView.tsx b/gameyfin/src/main/frontend/views/GameView.tsx index 9113071..9710d15 100644 --- a/gameyfin/src/main/frontend/views/GameView.tsx +++ b/gameyfin/src/main/frontend/views/GameView.tsx @@ -69,7 +69,10 @@ export default function GameView() {

Summary

-

{game.summary}

+ {game.summary ? +
: +

No summary available

+ }

Details