From fd9bd136da0ecce30b418e821ef6ca78fab97733 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Mon, 17 Oct 2016 14:10:27 +0200 Subject: [PATCH] fixes a part of the dashboard update --- BookAStar/BookAStar/ViewModels/DashboardViewModel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BookAStar/BookAStar/ViewModels/DashboardViewModel.cs b/BookAStar/BookAStar/ViewModels/DashboardViewModel.cs index 8ba61efb..e744cdbc 100644 --- a/BookAStar/BookAStar/ViewModels/DashboardViewModel.cs +++ b/BookAStar/BookAStar/ViewModels/DashboardViewModel.cs @@ -195,10 +195,10 @@ namespace BookAStar.ViewModels "Profile professionel non renseigné"; newAvatar = UserHelpers.Avatar(user.Avatar); } - SetProperty(ref haveAnUser, newHaveAnUser, "UserIsPro"); + SetProperty(ref haveAnUser, newHaveAnUser, "HaveAnUser"); SetProperty(ref userIsPro, newUserIsPro, "UserIsPro"); SetProperty(ref performerStatus, newStatusString, "PerformerStatus"); - SetProperty(ref userQueries, newQueriesButtonText, "PerformerStatus"); + SetProperty(ref userQueries, newQueriesButtonText, "UserQueries"); SetProperty(ref queryCount, newQueryCount, "QueryCount"); SetProperty(ref avatar, newAvatar, "Avatar"); }