fix warnings changedetection

This commit is contained in:
Roman Hotsiy 2016-08-30 18:38:13 +03:00
parent 1b6c858ab7
commit 4f746a19e3
No known key found for this signature in database
GPG Key ID: 5CB7B3ACABA57CB0

View File

@ -1,14 +1,13 @@
'use strict';
import { Component, ChangeDetectionStrategy, OnInit } from '@angular/core';
import { Component, OnInit } from '@angular/core';
import { SpecManager, BaseComponent } from '../base';
import { WarningsService, OptionsService } from '../../services/index';
@Component({
selector: 'warnings',
styleUrls: ['./warnings.css'],
templateUrl: './warnings.html',
changeDetection: ChangeDetectionStrategy.OnPush
templateUrl: './warnings.html'
})
export class Warnings extends BaseComponent implements OnInit {
warnings: Array<string> = [];