Skip to content

Commit

Permalink
Fix tabs with out icons (#683)
Browse files Browse the repository at this point in the history
  • Loading branch information
guyca committed Jan 23, 2017
1 parent 75b5d53 commit 6e073f8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/deprecated/platformSpecificDeprecated.android.js
Expand Up @@ -43,7 +43,9 @@ function adaptTopTabs(screen, navigatorID) {
tab.navigatorID = navigatorID;
}
tab.screen = tab.screenId;
addTabIcon(tab);
if (tab.icon) {
addTabIcon(tab);
}
addNavigatorButtons(tab);
adaptNavigationParams(tab);
addNavigationStyleParams(tab);
Expand Down

0 comments on commit 6e073f8

Please sign in to comment.