Merge remote-tracking branch 'origin/develop' into shigusegubu

* origin/develop:
  entity_normalizer: Escape name when parsing user
This commit is contained in:
Henry Jameson 2021-11-16 19:49:37 +02:00
commit 67efa635c5
2 changed files with 4 additions and 3 deletions

View file

@ -24,7 +24,7 @@ library.add(
const ProfileTab = {
data () {
return {
newName: this.$store.state.users.currentUser.name,
newName: this.$store.state.users.currentUser.name_unescaped,
newBio: unescape(this.$store.state.users.currentUser.description),
newLocked: this.$store.state.users.currentUser.locked,
newNoRichText: this.$store.state.users.currentUser.no_rich_text,