Skip to content

Commit b7af502

Browse files
committed
fix: TT-41 Add column in table of projects, also agg and change some variables
1 parent 864bce8 commit b7af502

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/app/modules/customer-management/components/projects/components/project-list/project-list.component.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,6 @@ export class ProjectListComponent implements OnInit, OnDestroy {
5858
const addProps = btnProps.find((prop) => prop.key === this.setActive(project.status));
5959
return { ...project, ...addProps };
6060
});
61-
//console.log(this.projects[0])
62-
6361
});
6462
}
6563

src/app/modules/shared/models/project.model.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export interface Project {
77
project_type_id?: string;
88
search_field?: string;
99
status?: any;
10-
technologies?: string[]
10+
technologies?: string[];
1111
}
1212

1313
export interface ProjectUI {
@@ -19,7 +19,7 @@ export interface ProjectUI {
1919
project_type_id?: string;
2020
search_field?: string;
2121
status?: any;
22-
technologies?: string[]
22+
technologies?: string[];
2323
key?: string;
2424
btnColor?: string;
2525
btnIcon?: string;

0 commit comments

Comments
 (0)