Ionic5 menu not closing

I use the below side menu structure to navigate to a view in the app. The route opens yet the menu does not close as desired.
Why? Is Ionic3 menuClose still available? I’m not finding it on the ionic5 menu documentation. What would the alternative in ionic5 be?

<ion-app>
  <ion-split-pane contentId="main-content">
    <ion-menu contentId="main-content" type="overlay">
      <ion-content>
        <ion-list no-lines width="10">
          <ion-list-header>
            <h2>HELLO</h2>
          </ion-list-header>  
          <ion-item menuClose [routerLink]="['/view1']">
            View1
          </ion-item>
...

I haven’t tried this myself, but there is this thread.

1 Like

Thanks, that was it.