From 8c7e8dab8e99fe936174018b3be2cacd72ef4f71 Mon Sep 17 00:00:00 2001 From: Victor Woeltjen Date: Wed, 31 May 2017 15:52:15 -0700 Subject: [PATCH] [Imagery] Use consistent field name --- .../features/imagery/src/controllers/ImageryController.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }; /**