Skip to content

Commit

Permalink
Fix pokemon filter dropdown (PokemonGoF#2042)
Browse files Browse the repository at this point in the history
* value was removed in AHAAAAAAA/PokemonGo-Map@b4c36a5
  • Loading branch information
invisiblek authored and DerScreever committed Jul 25, 2016
1 parent b4c36a5 commit d9ee33d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/map.js
Original file line number Diff line number Diff line change
Expand Up @@ -1046,7 +1046,7 @@ $(function () {
var pokeList = []

$.each(data, function(key, value) {
pokeList.push( { id: key, text: + ' - #' + key } );
pokeList.push( { id: key, text: value + ' - #' + key } );
idToPokemon[key] = value;
});

Expand Down

0 comments on commit d9ee33d

Please sign in to comment.