Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PERFORMA_REPLICA
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Muhammad Usman
PERFORMA_REPLICA
Commits
8c720bc7
Commit
8c720bc7
authored
Jul 01, 2020
by
Muhammad Usman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
career history tab builder isues fixed
parent
5cd03323
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
10 deletions
+8
-10
career-history.component.html
...reer-history/career-history/career-history.component.html
+5
-7
work-history.component.html
...y/career-history/work-history/work-history.component.html
+2
-2
personal-details.component.ts
.../mc-shared/personal-details/personal-details.component.ts
+1
-1
No files found.
frontend/angular/src/app/components/my-career-web/career-history/career-history/career-history.component.html
View file @
8c720bc7
...
...
@@ -18,8 +18,6 @@
<div
class=
"assessment-body-header"
>
<div
class=
"assessment-heading"
>
Career History
</div>
<span
class=
"assessment-estimation"
>
<i
class=
"fa fa-clock-o"
></i>
<strong>
Estimated time to complete
</strong>
: 20 mins
</span>
</div>
<div
class=
"assessment-body-description"
>
...
...
@@ -33,21 +31,21 @@
<app-templates></app-templates>
</p-tabPanel>
<p-tabPanel
header=
"2{{isMobileView ? '' : '. Personal Data'}}"
[
selected
]="
activeTab =
==
'
personal-data
'"
>
<app-personal-details
[
asChildComponent
]="
true
"
(
detailsSaved
)="
tabChanged
({
index:
1
})"
>
<app-personal-details
[
asChildComponent
]="
true
"
(
detailsSaved
)="
tabChanged
({
index:
2
})"
>
</app-personal-details>
</p-tabPanel>
<p-tabPanel
header=
"3{{isMobileView ? '' : '. Work History'}}"
[
selected
]="
activeTab =
==
'
work-history
'"
>
<app-work-history
(
workSaved
)="
tabChanged
({
index:
2
})"
>
<app-work-history
(
workSaved
)="
tabChanged
({
index:
3
})"
>
</app-work-history>
</p-tabPanel>
<p-tabPanel
header=
"4{{isMobileView ? '' : '. Education'}}"
[
selected
]="
activeTab =
==
'
education
'"
>
<app-education
(
educationSaved
)="
tabChanged
({
index:
3
})"
></app-education>
<app-education
(
educationSaved
)="
tabChanged
({
index:
4
})"
></app-education>
</p-tabPanel>
<p-tabPanel
header=
"5{{isMobileView ? '' : '. Skills'}}"
[
selected
]="
activeTab =
==
'
skills
'"
>
<app-skills
(
skillsSaved
)="
tabChanged
({
index:
4
})"
></app-skills>
<app-skills
(
skillsSaved
)="
tabChanged
({
index:
5
})"
></app-skills>
</p-tabPanel>
<p-tabPanel
header=
"6{{isMobileView ? '' : '. References'}}"
[
selected
]="
activeTab =
==
'
references
'"
>
<app-references
(
refereeSaved
)="
tabChanged
({
index:
5
})"
></app-references>
<app-references
(
refereeSaved
)="
tabChanged
({
index:
6
})"
></app-references>
</p-tabPanel>
<p-tabPanel
header=
"7{{isMobileView ? '' : '. Publish'}}"
[
selected
]="
activeTab =
==
'
publish
'"
>
<app-publish></app-publish>
...
...
frontend/angular/src/app/components/my-career-web/career-history/career-history/work-history/work-history.component.html
View file @
8c720bc7
...
...
@@ -31,7 +31,7 @@
<div
class=
"col-md-6 form-group"
>
<label>
Start
</label>
<app-form-control>
<p-calendar
placeholder=
"MM/YYYY"
dateFormat=
"mm/yy"
view=
"month"
[
icon
]="
true
"
[(
ngModel
)]="
experience
.
StartMonthField
"
required
name=
"StartMonth{{i}}"
>
<p-calendar
[
maxDate
]="
experience
.
EndMonthField
"
placeholder=
"MM/YYYY"
dateFormat=
"mm/yy"
view=
"month"
[
icon
]="
true
"
[(
ngModel
)]="
experience
.
StartMonthField
"
required
name=
"StartMonth{{i}}"
>
</p-calendar>
</app-form-control>
</div>
...
...
@@ -39,7 +39,7 @@
<div
class=
"col-md-6 form-group"
*
ngIf=
"!experience.StillInRole"
>
<label>
End
</label>
<app-form-control>
<p-calendar
placeholder=
"MM/YYYY"
dateFormat=
"mm/yy"
view=
"month"
[
icon
]="
true
"
[(
ngModel
)]="
experience
.
EndMonthField
"
required
name=
"EndMonth{{i}}"
>
<p-calendar
[
minDate
]="
experience
.
StartMonthField
"
placeholder=
"MM/YYYY"
dateFormat=
"mm/yy"
view=
"month"
[
icon
]="
true
"
[(
ngModel
)]="
experience
.
EndMonthField
"
required
name=
"EndMonth{{i}}"
>
</p-calendar>
</app-form-control>
</div>
...
...
frontend/angular/src/app/components/my-career-web/mc-shared/personal-details/personal-details.component.ts
View file @
8c720bc7
...
...
@@ -133,7 +133,7 @@ export class PersonalDetailsComponent extends BaseComponent implements OnInit {
}
changedAddress
():
void
{
this
.
careerProfile
.
GoogleAddress
=
'
'
;
this
.
careerProfile
.
GoogleAddress
=
''
;
}
updateAddress
(
$event
):
void
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment