Remove undefined argument passed to search data method.

This commit is contained in:
Jon Carifio 2023-11-01 09:58:35 -04:00
Родитель 6076e52b9e
Коммит 784f9bf93c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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];