Skip to content
This repository has been archived by the owner on Apr 3, 2020. It is now read-only.

Commit

Permalink
Fix GSM in Setings
Browse files Browse the repository at this point in the history
This fixes a bug introduced in https://codereview.chromium.org/427903004

BUG=406114
R=pneubeck@chromium.org

Review URL: https://codereview.chromium.org/492373002

Cr-Commit-Position: refs/heads/master@{#291415}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@291415 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
stevenjb@chromium.org committed Aug 22, 2014
1 parent 03cc94b commit 8e0e343
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1315,7 +1315,7 @@ cr.define('options.internet', function() {
setOrHideParent('prl-version',
getManagedValue(data, 'Cellular.PRLVersion'));

var family = getManagedValue(data, 'Cellular.GSM');
var family = getManagedValue(data, 'Cellular.Family');
detailsPage.gsm = family == 'GSM';
if (detailsPage.gsm) {
$('iccid').textContent = getManagedValue(data, 'Cellular.ICCID');
Expand Down

0 comments on commit 8e0e343

Please sign in to comment.