Skip to content

Commit

Permalink
Client: Only show first name in join trip results list
Browse files Browse the repository at this point in the history
  • Loading branch information
Vanessa Lange committed May 13, 2015
1 parent 2707692 commit f51d0d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public void onBindViewHolder(ViewHolder holder, int position) {

// Driver info
User driver = reservation.getDriver();
holder.tvDriverName.setText(driver.getFirstName() + " " + driver.getLastName());
holder.tvDriverName.setText(driver.getFirstName());


// Distance information
Expand Down

0 comments on commit f51d0d6

Please sign in to comment.