Skip to content
This repository has been archived by the owner on May 9, 2021. It is now read-only.

Commit

Permalink
fix: make sure to import BsDropdownModule
Browse files Browse the repository at this point in the history
  • Loading branch information
beeman committed Apr 3, 2020
1 parent e5b2799 commit 3b52be8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { CommonModule } from '@angular/common'
import { NgModule } from '@angular/core'
import { TimeagoModule } from 'ngx-timeago'
import { BsDropdownModule } from 'ngx-bootstrap/dropdown'

import { UiDropdownComponent } from './ui-dropdown.component'

@NgModule({
imports: [TimeagoModule, CommonModule],
imports: [BsDropdownModule.forRoot(), CommonModule],
declarations: [UiDropdownComponent],
exports: [UiDropdownComponent],
})
Expand Down

0 comments on commit 3b52be8

Please sign in to comment.