Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
Easy Quest - Smart Recruitment Tool with AI
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
22_23 - J 36
Easy Quest - Smart Recruitment Tool with AI
Commits
751a8383
Commit
751a8383
authored
Apr 15, 2023
by
Emika Chamodi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Voice analys fix
parent
c88ebc61
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
src/common/lib/util.ts
src/common/lib/util.ts
+1
-0
src/components/Application/Applicant.tsx
src/components/Application/Applicant.tsx
+2
-2
No files found.
src/common/lib/util.ts
View file @
751a8383
...
@@ -66,6 +66,7 @@ export const getStatusColor = (status?: ApplicationType["status"]) => {
...
@@ -66,6 +66,7 @@ export const getStatusColor = (status?: ApplicationType["status"]) => {
};
};
export
const
getAddress
=
(
address
:
AddressType
)
=>
{
export
const
getAddress
=
(
address
:
AddressType
)
=>
{
if
(
!
address
)
return
""
;
return
`
${
address
.
addressLine
}
,
${
address
.
city
}
,
${
address
.
country
}
`
;
return
`
${
address
.
addressLine
}
,
${
address
.
city
}
,
${
address
.
country
}
`
;
};
};
...
...
src/components/Application/Applicant.tsx
View file @
751a8383
...
@@ -57,7 +57,7 @@ const Applicant = ({ application }: OwnProps) => {
...
@@ -57,7 +57,7 @@ const Applicant = ({ application }: OwnProps) => {
<
textarea
<
textarea
className=
"form-control"
className=
"form-control"
rows=
{
3
}
rows=
{
3
}
value=
{
getAddress
(
candidate
.
contacts
.
address
)
}
value=
{
getAddress
(
candidate
.
contacts
?
.
address
)
}
disabled
disabled
/>
/>
</
div
>
</
div
>
...
@@ -71,7 +71,7 @@ const Applicant = ({ application }: OwnProps) => {
...
@@ -71,7 +71,7 @@ const Applicant = ({ application }: OwnProps) => {
type=
"text"
type=
"text"
className=
"form-control"
className=
"form-control"
name=
"phone"
name=
"phone"
value=
{
candidate
.
contacts
?.
phone
}
value=
{
candidate
.
contacts
?.
phone
||
""
}
disabled
disabled
/>
/>
</
div
>
</
div
>
...
...
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