File tree Expand file tree Collapse file tree 3 files changed +3
-15
lines changed
projects/arc-lib/src/lib/components/gantt Expand file tree Collapse file tree 3 files changed +3
-15
lines changed Original file line number Diff line number Diff line change 1- import { Component , Input , OnInit } from '@angular/core' ;
2-
1+ import { Component , Input } from '@angular/core' ;
32@Component ( {
43 selector : 'arc-gantt-header' ,
54 templateUrl : './gantt-header.component.html' ,
Original file line number Diff line number Diff line change 11import { Component , Input } from '@angular/core' ;
2- import { Item } from '@main-project/boiler/model/item.model' ;
32import { TranslateService } from '@ngx-translate/core' ;
3+ import { Item } from '../../model/item.model' ;
44
55@Component ( {
66 selector : 'arc-gantt-tooltip' ,
@@ -9,10 +9,7 @@ import {TranslateService} from '@ngx-translate/core';
99} )
1010export class GanttTooltipComponent {
1111 @Input ( )
12- // item: Item;
13- set item ( values ) {
14- console . log ( values ) ;
15- }
12+ item : Item ;
1613
1714 @Input ( )
1815 allocationMap = new Map < string , boolean > ( [ ] ) ;
Original file line number Diff line number Diff line change @@ -26,14 +26,6 @@ export interface empData {
2626 overallocated : boolean ;
2727}
2828
29- // export interface Suballocation {
30- // width: string;
31- // hours: number;
32- // rate: number;
33- // overallocated: boolean;
34- // overallocatedHours: number;
35- // }
36-
3729export interface AllocationBar {
3830 percent : number ;
3931 allocation : number ;
You can’t perform that action at this time.
0 commit comments