Commit b48f4324 authored by Javier Ernesto Flores Robles's avatar Javier Ernesto Flores Robles Committed by Commit Bot

[iOS][Credential-Provider] Show service as title

Bug: 1090772
Change-Id: I8b2b483b308b36800ab03415aabab84f2b8c7640
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2239576
Commit-Queue: Javier Ernesto Flores Robles <javierrobles@chromium.org>
Reviewed-by: default avatarDavid Jean <djean@chromium.org>
Cr-Commit-Position: refs/heads/master@{#777322}
parent 2ed8fe3d
...@@ -178,9 +178,9 @@ const CGFloat kHeaderHeight = 70; ...@@ -178,9 +178,9 @@ const CGFloat kHeaderHeight = 70;
} }
cell.imageView.contentMode = UIViewContentModeScaleAspectFit; cell.imageView.contentMode = UIViewContentModeScaleAspectFit;
cell.accessoryView.backgroundColor = [UIColor colorNamed:kBackgroundColor]; cell.accessoryView.backgroundColor = [UIColor colorNamed:kBackgroundColor];
cell.textLabel.text = credential.user; cell.textLabel.text = credential.serviceName;
cell.textLabel.textColor = [UIColor colorNamed:kTextPrimaryColor]; cell.textLabel.textColor = [UIColor colorNamed:kTextPrimaryColor];
cell.detailTextLabel.text = credential.serviceName; cell.detailTextLabel.text = credential.user;
cell.detailTextLabel.textColor = [UIColor colorNamed:kTextSecondaryColor]; cell.detailTextLabel.textColor = [UIColor colorNamed:kTextSecondaryColor];
cell.selectionStyle = UITableViewCellSelectionStyleNone; cell.selectionStyle = UITableViewCellSelectionStyleNone;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment