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 latest changes
  • Loading branch information
kevinjlope committed May 25, 2021
commit 5fb9e551d0427c8e90508897c00b60151e87ebca
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 @@ -6,8 +6,8 @@ export interface Project {
description?: string;
project_type_id?: string;
search_field?: string;
status?: any;
technologies?: string[];
status?: any;
}

export interface ProjectUI {
Expand All @@ -18,8 +18,8 @@ export interface ProjectUI {
description?: string;
project_type_id?: string;
search_field?: string;
status?: any;
technologies?: string[];
status?: any;
key?: string;
btnColor?: string;
btnIcon?: string;
Expand Down
1 change: 0 additions & 1 deletion src/environments/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import * as keys from './keys';
export const environment = {
production: false,
timeTrackerApiUrl: 'https://timetracker-api.azurewebsites.net',
// timeTrackerApiUrl: 'https://127.0.0.1:5000',
stackexchangeApiUrl: 'https://api.stackexchange.com',
};

Expand Down