Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: TT-41 Add column in table of projects, also agg and change some …
…variables
  • Loading branch information
kevinjlope committed May 27, 2021
commit b7af5022b2d59cf7ae8d96dabf9bcbcfdd0f5b20
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,6 @@ export class ProjectListComponent implements OnInit, OnDestroy {
const addProps = btnProps.find((prop) => prop.key === this.setActive(project.status));
return { ...project, ...addProps };
});
//console.log(this.projects[0])

});
}

Expand Down
4 changes: 2 additions & 2 deletions src/app/modules/shared/models/project.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export interface Project {
project_type_id?: string;
search_field?: string;
status?: any;
technologies?: string[]
technologies?: string[];
}

export interface ProjectUI {
Expand All @@ -19,7 +19,7 @@ export interface ProjectUI {
project_type_id?: string;
search_field?: string;
status?: any;
technologies?: string[]
technologies?: string[];
key?: string;
btnColor?: string;
btnIcon?: string;
Expand Down