From 40de2ee3f7ddcf3d490e6ec7aded4b0a5d661977 Mon Sep 17 00:00:00 2001 From: Giuseppe Digilio Date: Fri, 21 Dec 2018 15:41:37 +0100 Subject: [PATCH] Fix issue with ViewEncapsulation Native on firefox --- src/app/shared/form/form.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/shared/form/form.component.ts b/src/app/shared/form/form.component.ts index 69132c29c0..aeeeedfb52 100644 --- a/src/app/shared/form/form.component.ts +++ b/src/app/shared/form/form.component.ts @@ -32,7 +32,7 @@ import { FormEntry, FormError } from './form.reducer'; selector: 'ds-form', styleUrls: ['form.component.scss'], templateUrl: 'form.component.html', - encapsulation: ViewEncapsulation.Native + encapsulation: ViewEncapsulation.ShadowDom }) export class FormComponent implements OnDestroy, OnInit {