Skip to content

Commit 697b4da

Browse files
authored
🐛 Fix welcome message to show email if full name doe not exists (#129)
1 parent 854cc70 commit 697b4da

File tree

1 file changed

+1
-1
lines changed
  • {{cookiecutter.project_slug}}/frontend/src/views/main

1 file changed

+1
-1
lines changed

{{cookiecutter.project_slug}}/frontend/src/views/main/Dashboard.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import { readUserProfile } from '@/store/main/getters';
2525
export default class Dashboard extends Vue {
2626
get greetedUser() {
2727
const userProfile = readUserProfile(this.$store);
28-
if (userProfile && userProfile.full_name) {
28+
if (userProfile) {
2929
if (userProfile.full_name) {
3030
return userProfile.full_name;
3131
} else {

0 commit comments

Comments
 (0)