From 92b29135b53448d55835b4bfbf292bbbb3e12b4c Mon Sep 17 00:00:00 2001 From: Peter Bastiani Date: Thu, 1 Feb 2024 13:34:38 +0100 Subject: [PATCH] Aw5812wip --- .../src/fm/components/side-panel/side-panel.component.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/projects/common/src/fm/components/side-panel/side-panel.component.ts b/projects/common/src/fm/components/side-panel/side-panel.component.ts index bb87a18..8e26fe8 100644 --- a/projects/common/src/fm/components/side-panel/side-panel.component.ts +++ b/projects/common/src/fm/components/side-panel/side-panel.component.ts @@ -1,9 +1,10 @@ -import { Component, Input,Output,ViewChild,EventEmitter, ElementRef,OnChanges,SimpleChanges,HostListener,ChangeDetectorRef } from '@angular/core'; +import { Component, Input,Output,ViewChild,EventEmitter, ElementRef,OnChanges,SimpleChanges,HostListener,ChangeDetectorRef, ViewEncapsulation } from '@angular/core'; @Component({ selector: 'fm-side-panel', templateUrl: 'side-panel.component.html', - styleUrls: ['side-panel.component.scss'] + styleUrls: ['side-panel.component.scss'], + encapsulation: ViewEncapsulation.None })