Skip to content

Commit

Permalink
fix(tables): fix #700
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Zhukov committed Feb 10, 2017
1 parent 08de1f6 commit c85eae7
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Component, ViewEncapsulation} from '@angular/core';
import {Component} from '@angular/core';

import {ChartistJsService} from './chartistJs.service';
import 'style-loader!./chartistJs.scss';
Expand Down
2 changes: 1 addition & 1 deletion src/app/pages/dashboard/pieChart/pieChart.component.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Component, ViewEncapsulation} from '@angular/core';
import {Component} from '@angular/core';

import {PieChartService} from './pieChart.service';

Expand Down
2 changes: 1 addition & 1 deletion src/app/pages/register/register.component.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Component, ViewEncapsulation} from '@angular/core';
import {Component} from '@angular/core';
import {FormGroup, AbstractControl, FormBuilder, Validators} from '@angular/forms';
import {EmailValidator, EqualPasswordsValidator} from '../../theme/validators';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { Component, ViewEncapsulation } from '@angular/core';
import { Component } from '@angular/core';

import { SmartTablesService } from './smartTables.service';
import { LocalDataSource } from 'ng2-smart-table';

import 'style-loader!./smartTables.scss';

@Component({
selector: 'basic-tables',
encapsulation: ViewEncapsulation.None,
styleUrls: ['./smartTables.scss'],
selector: 'smart-tables',
templateUrl: './smartTables.html',
})
export class SmartTables {
Expand Down
2 changes: 1 addition & 1 deletion src/app/pages/ui/components/buttons/buttons.component.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Component, ViewEncapsulation} from '@angular/core';
import {Component} from '@angular/core';

import 'style-loader!./buttons.scss';

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import {Component, ViewEncapsulation} from '@angular/core';
import {Component} from '@angular/core';


@Component({
selector: 'typography',
styles: [],
templateUrl: './typography.html',
})
export class Typography {
Expand Down
2 changes: 1 addition & 1 deletion src/app/theme/components/baSidebar/baSidebar.component.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {Component, ElementRef, HostListener, ViewEncapsulation} from '@angular/core';
import {Component, ElementRef, HostListener} from '@angular/core';
import {GlobalState} from '../../../global.state';
import {layoutSizes} from '../../../theme';

Expand Down

0 comments on commit c85eae7

Please sign in to comment.