Commit 6d772dd9 by Muhammad Usman

build fix

parent 2f4640ff
......@@ -63,7 +63,9 @@ export class ProfileTasksComponent extends BaseComponent {
});
this.personalDetailsService.currentTab = this.profileTasks.find(t => t.inProgress || !this.careerProfile[t.key]);
const currentTask = this.profileTasks.find(t => !this.careerProfile[t.key]);
currentTask.started = true;
if (currentTask) {
currentTask.started = true;
}
// const percentage = (this.careerProfile.CompletedPercentage || 0) * 3.6;
// if (percentage === 360) {
// this.backgroundColor = '#1DBA3C';
......
......@@ -4,7 +4,7 @@ import { QuestionModel } from './question.model';
export class WorkStyleQuestionModel extends BaseModel {
ObjectClass = CLASSES.WORK_STYLE_QUESTION;
QuestionNo: string;
QuestionNo: number;
Percentage: number;
IntroductoryText: string;
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