header style fixes (#4245)

This commit is contained in:
Denys Vuika
2019-02-01 16:44:21 +00:00
committed by Eugenio Romano
parent a472772dfd
commit 0282bfa468
2 changed files with 23 additions and 4 deletions

View File

@@ -15,7 +15,7 @@
* limitations under the License.
*/
import { Component, ViewEncapsulation } from '@angular/core';
import { Component, ViewEncapsulation, ChangeDetectionStrategy } from '@angular/core';
@Component({
selector: 'adf-toolbar-divider',
@@ -30,6 +30,7 @@ import { Component, ViewEncapsulation } from '@angular/core';
margin-right: 5px;
}
`],
encapsulation: ViewEncapsulation.None
encapsulation: ViewEncapsulation.None,
changeDetection: ChangeDetectionStrategy.OnPush
})
export class ToolbarDividerComponent {}