mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 22:32:46 +00:00
only show profiles that haven't been migrated in the Profile Selection dialog.
This commit is contained in:
parent
f297a3c3db
commit
3eb3322f08
@ -77,7 +77,10 @@ function loadElements()
|
||||
for (var i = 0; i < profileList.length; i++)
|
||||
{
|
||||
var pvals = profileList[i].split(" - ");
|
||||
AddItem("profilekids",pvals[0],pvals[0]);
|
||||
// only add profiles that have been migrated
|
||||
if (pvals[1] != "migrate") {
|
||||
AddItem("profilekids",pvals[0],pvals[0]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user