Fix an issue on My Account page

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2019-12-17 19:32:48 +01:00
parent 056b696b36
commit ebb39aab63
4 changed files with 32 additions and 41 deletions

View File

@@ -1,10 +1,10 @@
import { Component, Mixins, Vue } from 'vue-property-decorator';
import { Person } from '@/types/actor';
@Component
@Component({})
export default class IdentityEditionMixin extends Mixins(Vue) {
identity = new Person();
identity: Person = new Person();
oldDisplayName: string | null = null;
autoUpdateUsername(newDisplayName: string | null) {