Skip to content
Snippets Groups Projects
Commit 388df322 authored by Liliana Sanfilippo's avatar Liliana Sanfilippo
Browse files

goals

parent d93cb2c1
No related branches found
No related tags found
No related merge requests found
Pipeline #418350 failed
......@@ -32,6 +32,15 @@ import { BlockQuoteB } from "./Quotes";
problem_desc.push("interview language");
}
/* Aim/Goal */
var goalheading: string = "";
if(data[i].type === "meta"){
goalheading = "Goals";
}
else{
goalheading = "Aim of contact"
}
/* Quotation */
var quoted: string = "";
if(data[i].quote != ""){
......@@ -50,7 +59,7 @@ import { BlockQuoteB } from "./Quotes";
/* textparts */
if(data[i].aimofcontact === ""){
problem = true;
problem_desc.push(" aim of contact missing");
problem_desc.push(" " + goalheading + " missing");
}
if(data[i].insights === ""){
problem = true;
......@@ -94,6 +103,8 @@ import { BlockQuoteB } from "./Quotes";
}
}
let node = <>
<br/>
<h3>{data[i].vorname} {data[i].nachnname}</h3>
......@@ -114,7 +125,7 @@ import { BlockQuoteB } from "./Quotes";
<img className="middle sechpro" src={data[i].pictureurl}/>
</div>
</div>
<h4>Aim of contact</h4>
<h4>{goalheading}</h4>
<p>{data[i].aimofcontact}</p>
<h4>Insights</h4>
<p>{data[i].insights}</p>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment