You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a tabs component which is listening to the onItemPressed:
ionViewDidLoad() {
this.plt.ready().then(() => {
this.indexAppContent.onItemPressed().subscribe((payload: any) => {
console.log('from TABS when a item is pressed');
console.log('### payload: ' + JSON.stringify(payload));
this.tabRef.select(2);
});
});
}
When I perform a spotlight search, I see the desired item and the log messages appear... However, I cannot change tabs from this context. Also, there is no error being thrown. How can I route to the desired page?
The text was updated successfully, but these errors were encountered:
@tharrington What version of Ionic are you using? I don't know how tabs worked before but in Ionic v4 I would change tabs via their URL and Angular router.
I have a tabs component which is listening to the onItemPressed:
When I perform a spotlight search, I see the desired item and the log messages appear... However, I cannot change tabs from this context. Also, there is no error being thrown. How can I route to the desired page?
The text was updated successfully, but these errors were encountered: