public void OnLoaded(Comment comment)
        {
            UserModel commentUser = UserDB.GetUser(comment.AuthorName);

            this.AvatarPic.DataContext = commentUser;
            _myReaction = CommentDB.GetReactionObject(comment.CommentId, App.CurrentUser);
            this.CurrentReactionBtn.DataContext = _myReaction;
        }