summaryrefslogtreecommitdiff
path: root/elm
diff options
context:
space:
mode:
Diffstat (limited to 'elm')
-rw-r--r--elm/Report.elm3
1 files changed, 2 insertions, 1 deletions
diff --git a/elm/Report.elm b/elm/Report.elm
index 5bb75aaf..8cbf498e 100644
--- a/elm/Report.elm
+++ b/elm/Report.elm
@@ -7,6 +7,7 @@ import Browser
import Browser.Navigation exposing (load)
import Lib.Html exposing (..)
import Lib.Api as Api
+import Lib.Ffi as Ffi
import Gen.Api as GApi
import Gen.Report as GR
@@ -56,7 +57,7 @@ view (state,model) =
, if state == Api.Error GApi.Success
then p [] [ text "Your report has been submitted, a moderator will look at it as soon as possible." ]
else table [ class "formtable" ] <|
- [ formField "Subject" [ a [ href model.path ] [ text model.title ] ]
+ [ formField "Subject" [ span [ Ffi.innerHtml model.title ] [] ]
, formField ""
[ text "Your report will be forwarded to a moderator."
, br [] []