I am having an issue with my IonicRefresher. It doesnt matter where you are within the list of items, if a user is scrolling up (by swiping down) the refresher is being triggered.
<div class="list-container">
<ion-content>
<ion-refresher slot="fixed" (ionRefresh)="loadPreviousEvents($event)" *ngIf="mobile">
<ion-refresher-content pullingIcon="chevron-down-circle-outline" refreshingSpinner="circles">
</ion-refresher-content>
</ion-refresher>
<div id="Lists" class="lists" scrollY="true">
<ion-list id="{{item.dateId}}" class="list" *ngFor="let item of sessionDates" lines='none' #{{item.dateId}}>
<ion-list-header class="list-header">{{item.date}}</ion-list-header>
<ion-item detail="true" class="list-item" *ngFor="let sessionGroup of item.sessionGroups"
i only want the refresher to be triggered when at the top of the list (like a pull down to load more)