feat: sanitize HTML content in MainPage detail display
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 6s
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 6s
This commit is contained in:
parent
844cf176df
commit
78a59e277f
1 changed files with 4 additions and 1 deletions
|
|
@ -2463,7 +2463,10 @@ watch(
|
|||
)
|
||||
"
|
||||
>
|
||||
{{ props.row.detail || '-' }}
|
||||
{{
|
||||
props.row.detail.replace(/<\/?[^>]+(>|$)/g, '') ||
|
||||
'-'
|
||||
}}
|
||||
</q-td>
|
||||
|
||||
<q-td
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue