Remove undefined argument passed to search data method.
This commit is contained in:
Родитель
6076e52b9e
Коммит
784f9bf93c
|
@ -64,7 +64,7 @@ wwt.app.factory(
|
|||
function getPlaceById(id) {
|
||||
var deferred = $q.defer();
|
||||
|
||||
searchDataService.getData(all).then(function (d) {
|
||||
searchDataService.getData().then(function (d) {
|
||||
var constellationIndex = parseInt(id.split('.')[0]);
|
||||
var placeIndex = parseInt(id.split('.')[1]);
|
||||
var p = d.Constellations[constellationIndex].places[placeIndex];
|
||||
|
|
Загрузка…
Ссылка в новой задаче