'let item of items' loop doesn't work well in Ion-segment

Hello, I found a big issue when using ion-segment.

I’m populating a page of ion-segment with ion-items which is getting item data from data provider.
The issue is when items are populated from data provider, it looks like it automatically deactivate y-axis scroll. This only happens when I do this within ion-segment’s page.
Is there any way to fix this problem?

<div ngSwitchCase="'segmentPage04'">
 <div  *ngFor="let item of items">  
                                
                                     <ion-item>
                                       <button tappable  (click)="navigate()" id="item-button">
                                    
                                        <h4><strong>{{item.title}}</strong></h4>
                                        <p>{{item.description}} </p> 
                  
                                     
                                        </button>
                                         
                                      </ion-item>

                              </div>

</div>