I have a lwc component which calls the below method after save is successful :
navigateToEventRecordPage() { this[NavigationMixin.Navigate]({ type: 'standard__recordPage', attributes: { recordId: this.eventRecordId, //objectApiName: 'Event', actionName: 'view' } }); } This will open the Event Record Page as a Subtab as I am on the Salesforce Console App. However, after the Event record subtab is opened, it focuses to its previous already opened subtab.
For Example : I have Subtab1, SubTab2, SubTab3, Event Subtab. Once the above method is executed, it opens Event Subtab and quickly after that goes to SubTab3.