From 199533087be69d0b4e9203dd2b8c516d63c33b9d Mon Sep 17 00:00:00 2001 From: Tiago Kayaya Date: Thu, 27 Aug 2020 10:46:09 +0100 Subject: [PATCH] Commented ionic-selectable plugin --- src/app/app.module.ts | 4 ++-- src/app/home/home.module.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/app.module.ts b/src/app/app.module.ts index 57c77524f..0efdf3c7b 100644 --- a/src/app/app.module.ts +++ b/src/app/app.module.ts @@ -11,7 +11,7 @@ import { AppComponent } from './app.component'; import { HttpClientModule } from '@angular/common/http'; import { InAppBrowser } from '@ionic-native/in-app-browser/ngx'; -import { IonicSelectableModule } from 'ionic-selectable'; +/* import { IonicSelectableModule } from 'ionic-selectable'; */ @NgModule({ declarations: [AppComponent], @@ -23,7 +23,7 @@ import { IonicSelectableModule } from 'ionic-selectable'; HttpClientModule, { provide: RouteReuseStrategy, useClass: IonicRouteStrategy }, InAppBrowser, - IonicSelectableModule + /* IonicSelectableModule */ ], bootstrap: [AppComponent], schemas: [CUSTOM_ELEMENTS_SCHEMA] diff --git a/src/app/home/home.module.ts b/src/app/home/home.module.ts index 70ac080a1..4194c05aa 100644 --- a/src/app/home/home.module.ts +++ b/src/app/home/home.module.ts @@ -7,7 +7,7 @@ import { IonicModule } from '@ionic/angular'; import { HomePageRoutingModule } from './home-routing.module'; import { HomePage } from './home.page'; -import { IonicSelectableModule } from 'ionic-selectable'; +/* import { IonicSelectableModule } from 'ionic-selectable'; */ @NgModule({ @@ -16,7 +16,7 @@ import { IonicSelectableModule } from 'ionic-selectable'; FormsModule, IonicModule, HomePageRoutingModule, - IonicSelectableModule + /* IonicSelectableModule */ ], declarations: [HomePage] })