@@ -1,4 +1,4 @@
|
|||||||
import { Component, OnChanges } from '@angular/core';
|
import { Component, OnInit } from '@angular/core';
|
||||||
|
|
||||||
import { Tab } from '../tab';
|
import { Tab } from '../tab';
|
||||||
|
|
||||||
@@ -7,8 +7,9 @@ import { Tab } from '../tab';
|
|||||||
templateUrl: './none-tab.component.html',
|
templateUrl: './none-tab.component.html',
|
||||||
styleUrls: ['./none-tab.component.scss']
|
styleUrls: ['./none-tab.component.scss']
|
||||||
})
|
})
|
||||||
export class NoneTabComponent extends Tab implements OnChanges {
|
export class NoneTabComponent extends Tab implements OnInit {
|
||||||
ngOnChanges(event: any) {
|
|
||||||
|
ngOnInit() {
|
||||||
this.validAction.emit(true);
|
this.validAction.emit(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user