diff --git a/platform/features/imagery/src/controllers/ImageryController.js b/platform/features/imagery/src/controllers/ImageryController.js index 978df8a4bb..3cbf940647 100644 --- a/platform/features/imagery/src/controllers/ImageryController.js +++ b/platform/features/imagery/src/controllers/ImageryController.js @@ -96,7 +96,7 @@ define( return; } this.time = this.timeFormat.format(datum); - this.image = this.imageFormat.format(datum); + this.imageUrl = this.imageFormat.format(datum); }; /** @@ -113,7 +113,7 @@ define( * @returns {string} URL for telemetry image */ ImageryController.prototype.getImageUrl = function () { - return this.image; + return this.imageUrl; }; /**