Update for table

This commit is contained in:
2021-03-01 15:45:30 +01:00
parent 80ffcbd5be
commit 61ffaf6db6
16 changed files with 371 additions and 67 deletions
@@ -3,6 +3,7 @@ import { AnimationController, ModalController } from '@ionic/angular';
import { SearchPage } from 'src/app/pages/search/search.page';
import { MenuController } from '@ionic/angular';
import { ProfileComponent } from './profile/profile.component';
import { Router } from '@angular/router';
@Component({
selector: 'app-header-no-search',
templateUrl: './header-no-search.page.html',
@@ -12,7 +13,8 @@ export class HeaderNoSearchPage implements OnInit {
constructor(private modalController: ModalController,
private menu: MenuController,
private animationController: AnimationController,) { }
private animationController: AnimationController,
private router: Router) { }
ngOnInit() {
}
@@ -53,4 +55,8 @@ export class HeaderNoSearchPage implements OnInit {
});
return await modal.present();
}
changeRoute(path){
this.router.navigateByUrl(path)
}
}