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

Commit

Permalink
fix(table-config): Tooltip not displaying in attributes table (#2818)
Browse files Browse the repository at this point in the history
  • Loading branch information
abhinandan13jan authored and nimishamukherjee committed Dec 14, 2018
1 parent dea441e commit 175951b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/app/components_ngrx/table-config/table-config.module.ts
Original file line number Diff line number Diff line change
@@ -1,22 +1,23 @@
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { BsDropdownConfig, BsDropdownModule } from 'ngx-bootstrap';
import { TooltipConfig, TooltipModule } from 'ngx-bootstrap/tooltip';
import { ClickOutModule } from '../../widgets/clickout/clickout.module';
import { FilterColumnModule } from './../../pipes/column-filter.module';
import { TableConfigComponent } from './table-config.component';


@NgModule({
imports: [
CommonModule,
ClickOutModule,
ClickOutModule,
FilterColumnModule,
BsDropdownModule
BsDropdownModule,
TooltipModule
],
declarations: [TableConfigComponent],
exports: [TableConfigComponent],
providers: [BsDropdownConfig]
providers: [BsDropdownConfig, TooltipConfig]
})

export class TableConfigModule {}

0 comments on commit 175951b

Please sign in to comment.