Browse Source

Fix missing fab expended icon

Guy Carmeli 8 years ago
parent
commit
2ad0aecb82
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/deprecated/platformSpecificDeprecated.android.js

+ 1
- 1
src/deprecated/platformSpecificDeprecated.android.js View File

383
     if (fab.expendedIcon) {
383
     if (fab.expendedIcon) {
384
       const expendedIconUri = resolveAssetSource(fab.expendedIcon);
384
       const expendedIconUri = resolveAssetSource(fab.expendedIcon);
385
       if (expendedIconUri) {
385
       if (expendedIconUri) {
386
-        fab.expendedIcon = expendedIconUri.ui;
386
+        fab.expendedIcon = expendedIconUri.uri;
387
       }
387
       }
388
     }
388
     }
389
 
389