Changes:
Converting to draft for a bit, might be possible to provide full BC.
@diosmosis just found one last regression on this one. If the description of the report contains a special char like <
or "
it will be displayed encoded. Guess the "problem" is that the title is already stored encoded in the database. Before it was using rawSafeDecoded
in twig. Not sure if we already have something similar in vue to use.
@sgiehl :+1: we'd just decode it client side. Vue just sets textContent/innerText so its safe (unless using v-html which uses innerHTML).