mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
alignTitle
This commit is contained in:
@@ -59,7 +59,7 @@ export class Tab extends ViewController {
|
||||
|
||||
this.navbarView = item.navbarView = () => {
|
||||
let activeItem = this.getActive();
|
||||
return (activeItem && activeItem.navbarView()) || {};
|
||||
return activeItem && activeItem.navbarView();
|
||||
};
|
||||
|
||||
this.panelId = 'tab-panel-' + item.id;
|
||||
|
||||
@@ -70,7 +70,6 @@ export class Tabs extends ViewController {
|
||||
if (activeTab && activeTab.instance) {
|
||||
return activeTab.instance.navbarView();
|
||||
}
|
||||
return {};
|
||||
};
|
||||
|
||||
// a Tabs ViewItem should not have a back button
|
||||
|
||||
Reference in New Issue
Block a user