Aw5812wip
FarmMaps.Develop/FarmMapsLib/pipeline/head This commit looks good Details

develop
Peter Bastiani 2024-02-01 13:34:38 +01:00
parent f6aebb2f80
commit 92b29135b5
1 changed files with 3 additions and 2 deletions

View File

@ -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
})