Skip to content
This repository was archived by the owner on Mar 1, 2024. It is now read-only.

Commit a030a04

Browse files
committed
fix: pin bootstrap version to 4.0.0 until tabler updates
1 parent e59881b commit a030a04

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

apps/demo/src/app/components/components.module.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { NgModule } from '@angular/core'
22
import { RouterModule, Routes } from '@angular/router'
33
import { SharedModule } from '@tabler/angular-core'
4+
import { NgPipesModule } from 'angular-pipes'
45

56
import { ComponentsIndexComponent } from './containers/components-index/components-index.component'
67
import { ComponentsIconsComponent } from './components/components-icons/components-icons.component'
@@ -31,7 +32,7 @@ const routes: Routes = [
3132
]
3233

3334
@NgModule({
34-
imports: [SharedModule, RouterModule.forChild(routes)],
35+
imports: [SharedModule, RouterModule.forChild(routes), NgPipesModule],
3536
declarations: [
3637
ComponentsIndexComponent,
3738
ComponentsIconsComponent,

apps/demo/src/app/gallery/gallery.module.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { NgModule } from '@angular/core'
22
import { RouterModule, Routes } from '@angular/router'
3+
import { NgPipesModule } from 'angular-pipes'
34
import { ModalModule } from 'ngx-bootstrap'
45
import { SharedModule } from '@tabler/angular-core'
56
import { GalleryIndexComponent } from './containers/gallery-index/gallery-index.component'
@@ -13,7 +14,7 @@ import { GalleryItemProfileComponent } from './components/gallery-item-profile/g
1314
const routes: Routes = [{ path: '', component: GalleryIndexComponent }]
1415

1516
@NgModule({
16-
imports: [SharedModule, RouterModule.forChild(routes), ModalModule.forRoot()],
17+
imports: [SharedModule, RouterModule.forChild(routes), ModalModule.forRoot(), NgPipesModule],
1718
declarations: [
1819
GalleryIndexComponent,
1920
GalleryItemComponent,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"@swimlane/ngx-charts": "^7.2.0",
6060
"angular-pipes": "^7.1.0",
6161
"angularfire2": "^5.0.0-rc.6",
62-
"bootstrap": "^4.0.0",
62+
"bootstrap": "4.0.0",
6363
"chart.js": "^2.7.2",
6464
"core-js": "^2.4.1",
6565
"firebase": "^4.12.1",

0 commit comments

Comments
 (0)