Skip to content
Snippets Groups Projects
Commit 7b3428b3 authored by Alex ORLUC's avatar Alex ORLUC
Browse files

FIX #15550 TIME 0:20 fix scroll sidebar

parent 0e6c6798
No related branches found
No related tags found
No related merge requests found
...@@ -95,7 +95,7 @@ ...@@ -95,7 +95,7 @@
</ion-item> </ion-item>
</ion-menu-toggle> </ion-menu-toggle>
</ion-list> </ion-list>
<ion-infinite-scroll threshold="100px" (ionInfinite)="loadData($event)"> <ion-infinite-scroll threshold="100px" (ionInfinite)="loadData($event)" *ngIf="signaturesService.documentsList.length > 0">
<ion-infinite-scroll-content loadingSpinner="bubbles" loadingText="Loading more data..."> <ion-infinite-scroll-content loadingSpinner="bubbles" loadingText="Loading more data...">
</ion-infinite-scroll-content> </ion-infinite-scroll-content>
</ion-infinite-scroll> </ion-infinite-scroll>
......
import { Component, OnInit, ElementRef, ViewChild, Input } from '@angular/core'; import { Component, OnInit, ElementRef, ViewChild } from '@angular/core';
import { HttpClient } from '@angular/common/http'; import { HttpClient } from '@angular/common/http';
import { Router, ActivatedRoute } from '@angular/router'; import { Router, ActivatedRoute } from '@angular/router';
import { MatSidenav } from '@angular/material/sidenav';
import { SignaturesContentService } from '../service/signatures.service'; import { SignaturesContentService } from '../service/signatures.service';
import { NotificationService } from '../service/notification.service'; import { NotificationService } from '../service/notification.service';
import { FormControl } from '@angular/forms'; import { FormControl } from '@angular/forms';
...@@ -25,7 +24,7 @@ export class SidebarComponent implements OnInit { ...@@ -25,7 +24,7 @@ export class SidebarComponent implements OnInit {
@ViewChild('listContent') listContent: ElementRef; @ViewChild('listContent') listContent: ElementRef;
@ViewChild('searchInput') searchInput: ElementRef; @ViewChild('searchInput') searchInput: ElementRef;
searchTerm: FormControl = new FormControl(); searchTerm: FormControl = new FormControl();
constructor( constructor(
...@@ -102,6 +101,7 @@ export class SidebarComponent implements OnInit { ...@@ -102,6 +101,7 @@ export class SidebarComponent implements OnInit {
} }
filter(mode: string) { filter(mode: string) {
this.signaturesService.documentsList = [];
if (mode !== '') { if (mode !== '') {
this.searchMode = false; this.searchMode = false;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment