Fixed broken quality profile identifiers

This commit is contained in:
Dean Gardiner
2014-08-10 13:12:52 +12:00
parent 4e78b0cac1
commit deb7943203
+2 -2
View File
@@ -198,8 +198,8 @@ Block.Search.ShowItem = new Class({
profiles.each(function(profile){
new Element('option', {
'value': profile.id ? profile.id : profile.data.id,
'text': profile.label ? profile.label : profile.data.label
'value': profile.get('_id'),
'text': profile.get('label')
}).inject(self.profile_select)
});