Quellcode durchsuchen

Fix new bubble initialized name (#10)

Fix new bubble initialized name

Co-authored-by: Kristijan Mitrovic <kmitrovic@itekako.com>
Reviewed-on: https://git.bubblev.org/bubblev/bubble-web/pulls/10
pull/13/head
Kristijan Mitrovic vor 4 Jahren
committed by jonathan
Ursprung
Commit
02818344a7
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      src/account/NewNetworkPage.vue

+ 1
- 1
src/account/NewNetworkPage.vue Datei anzeigen

@@ -501,7 +501,7 @@
initDefaults() {
const currentUser = util.currentUser();
const selectedLocale = (currentUser !== null && typeof currentUser.locale !== 'undefined' && currentUser.locale !== null ? currentUser.locale : 'detect');
this.accountPlan.name = currentUser.name;
this.accountPlan.name = 'bubble-' + currentUser.email.split("@")[0];
this.loadMessages('post_auth', selectedLocale);
this.loadMessages('apps', selectedLocale);
this.getPolicyByUserId({userId: currentUser.uuid, messages: this.messages, errors: this.errors});


Laden…
Abbrechen
Speichern