You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by pe...@apache.org on 2017/08/30 20:37:21 UTC

[09/32] git commit: [flex-asjs] [refs/heads/feature/dragAndDrop] - Quick fix for ListsTest

Quick fix for ListsTest


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/1fe4d2c9
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/1fe4d2c9
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/1fe4d2c9

Branch: refs/heads/feature/dragAndDrop
Commit: 1fe4d2c97e41a8d2f2eb4d958f7c8e7e70dd803e
Parents: a5f14d7
Author: greg-dove <gr...@gmail.com>
Authored: Tue Aug 22 11:29:05 2017 +1200
Committer: greg-dove <gr...@gmail.com>
Committed: Tue Aug 22 11:29:05 2017 +1200

----------------------------------------------------------------------
 manualtests/ListsTest/src/products/ProductItemRenderer.as | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/1fe4d2c9/manualtests/ListsTest/src/products/ProductItemRenderer.as
----------------------------------------------------------------------
diff --git a/manualtests/ListsTest/src/products/ProductItemRenderer.as b/manualtests/ListsTest/src/products/ProductItemRenderer.as
index 2983149..6e3d74a 100644
--- a/manualtests/ListsTest/src/products/ProductItemRenderer.as
+++ b/manualtests/ListsTest/src/products/ProductItemRenderer.as
@@ -57,7 +57,7 @@ package products
 		{
 			super.data = value;
 			
-			image.url = data.image;
+			image.src = data.image;
 			title.text = data.title;
 			detail.text = data.detail;
 		}