Commit 6d772dd9 by Muhammad Usman

build fix

parent 2f4640ff
...@@ -63,7 +63,9 @@ export class ProfileTasksComponent extends BaseComponent { ...@@ -63,7 +63,9 @@ export class ProfileTasksComponent extends BaseComponent {
}); });
this.personalDetailsService.currentTab = this.profileTasks.find(t => t.inProgress || !this.careerProfile[t.key]); this.personalDetailsService.currentTab = this.profileTasks.find(t => t.inProgress || !this.careerProfile[t.key]);
const currentTask = this.profileTasks.find(t => !this.careerProfile[t.key]); const currentTask = this.profileTasks.find(t => !this.careerProfile[t.key]);
if (currentTask) {
currentTask.started = true; currentTask.started = true;
}
// const percentage = (this.careerProfile.CompletedPercentage || 0) * 3.6; // const percentage = (this.careerProfile.CompletedPercentage || 0) * 3.6;
// if (percentage === 360) { // if (percentage === 360) {
// this.backgroundColor = '#1DBA3C'; // this.backgroundColor = '#1DBA3C';
......
...@@ -4,7 +4,7 @@ import { QuestionModel } from './question.model'; ...@@ -4,7 +4,7 @@ import { QuestionModel } from './question.model';
export class WorkStyleQuestionModel extends BaseModel { export class WorkStyleQuestionModel extends BaseModel {
ObjectClass = CLASSES.WORK_STYLE_QUESTION; ObjectClass = CLASSES.WORK_STYLE_QUESTION;
QuestionNo: string; QuestionNo: number;
Percentage: number; Percentage: number;
IntroductoryText: string; IntroductoryText: string;
Title: null; Title: null;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment