Skip to content

Commit 9b882a3

Browse files
mehcodefacebook-github-bot
authored andcommitted
Use uri instead of url in source property of Image
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
1 parent 3e866e0 commit 9b882a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Examples/UIExplorer/js/ImageExample.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ exports.examples = [
656656
<View style={{flexDirection: 'row'}}>
657657
<Image
658658
source={{
659-
url: 'ImageInBundle',
659+
uri: 'ImageInBundle',
660660
bundle: 'UIExplorerBundle',
661661
width: 100,
662662
height: 100,
@@ -665,7 +665,7 @@ exports.examples = [
665665
/>
666666
<Image
667667
source={{
668-
url: 'ImageInAssetCatalog',
668+
uri: 'ImageInAssetCatalog',
669669
bundle: 'UIExplorerBundle',
670670
width: 100,
671671
height: 100,

0 commit comments

Comments
 (0)