Skip to content

Commit

Permalink
Use uri instead of url in source property of Image
Browse files Browse the repository at this point in the history
Summary:
#13478 (comment)

Fix incorrect usage of `url` in the `source` property of `<Image />` in the example.
Closes #13496

Differential Revision: D4893299

Pulled By: hramos

fbshipit-source-id: 134f9100d16997627b14c145256818e05017bbe3
  • Loading branch information
mehcode authored and facebook-github-bot committed Apr 19, 2017
1 parent 3e866e0 commit 9b882a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Examples/UIExplorer/js/ImageExample.js
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,7 @@ exports.examples = [
<View style={{flexDirection: 'row'}}>
<Image
source={{
url: 'ImageInBundle',
uri: 'ImageInBundle',
bundle: 'UIExplorerBundle',
width: 100,
height: 100,
Expand All @@ -665,7 +665,7 @@ exports.examples = [
/>
<Image
source={{
url: 'ImageInAssetCatalog',
uri: 'ImageInAssetCatalog',
bundle: 'UIExplorerBundle',
width: 100,
height: 100,
Expand Down

0 comments on commit 9b882a3

Please sign in to comment.