Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
embl.org
html-sites
embl-jobs-pages
Commits
1addf171
Commit
1addf171
authored
May 14, 2021
by
Ken Hawkins
Browse files
Prevent "0" from being rendered as text
parent
d4db1963
Pipeline
#156627
passed with stages
in 42 seconds
Changes
1
Pipelines
23
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/components/job-details/JobDetails.jsx
src/components/job-details/JobDetails.jsx
+4
-4
No files found.
src/components/job-details/JobDetails.jsx
View file @
1addf171
...
...
@@ -242,7 +242,7 @@ export function JobDetails() {
<
div
>
{
/* empty */
}
</
div
>
<
div
className
=
"vf-content"
>
{
/* {% markdown %} */
}
{
currentJob
.
field_jobs_you_have
.
length
&&
(
{
currentJob
.
field_jobs_you_have
&&
(
<>
<
h3
id
=
"youhave"
>
You have
</
h3
>
<
Html
html
=
{
currentJob
.
field_jobs_you_have
}
/>
...
...
@@ -258,7 +258,7 @@ export function JobDetails() {
>
<
div
>
{
/* empty */
}
</
div
>
<
div
className
=
"vf-content"
>
{
currentJob
.
field_jobs_you_also_have
.
length
&&
(
{
currentJob
.
field_jobs_you_also_have
&&
(
<>
<
h3
id
=
"alsohave"
>
You might also have
</
h3
>
<
Html
html
=
{
currentJob
.
field_jobs_you_also_have
}
/>
...
...
@@ -274,7 +274,7 @@ export function JobDetails() {
>
<
div
>
{
/* empty */
}
</
div
>
<
div
className
=
"vf-content"
>
{
currentJob
.
field_jobs_why_join
.
length
&&
(
{
currentJob
.
field_jobs_why_join
&&
(
<>
<
h3
id
=
"why"
>
Why join us
</
h3
>
<
Html
html
=
{
currentJob
.
field_jobs_why_join
}
/>
...
...
@@ -331,7 +331,7 @@ export function JobDetails() {
>
<
div
>
{
/* empty */
}
</
div
>
<
div
className
=
"vf-content"
>
{
currentJob
.
field_jobs_what_else_to_know
.
length
&&
(
{
currentJob
.
field_jobs_what_else_to_know
&&
(
<>
<
h3
id
=
"needtoknow"
>
What else you need to know
</
h3
>
<
Html
html
=
{
currentJob
.
field_jobs_what_else_to_know
}
/>
...
...
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