Fondsname added with dynamic changes.
parent
6fef07ac86
commit
019e10d5b8
|
|
@ -50,6 +50,8 @@ function ExtractedResultsPage() {
|
||||||
const { data: kpi } = useSuspenseQuery(kpiQueryOptions(pitchBook));
|
const { data: kpi } = useSuspenseQuery(kpiQueryOptions(pitchBook));
|
||||||
const { data: settings } = useSuspenseQuery(settingsQueryOptions());
|
const { data: settings } = useSuspenseQuery(settingsQueryOptions());
|
||||||
|
|
||||||
|
const fundName = kpi["FONDSNAME"]?.[0]?.entity;
|
||||||
|
|
||||||
const status = useMemo(() => {
|
const status = useMemo(() => {
|
||||||
let hasRedBorders = false;
|
let hasRedBorders = false;
|
||||||
let hasYellowBorders = false;
|
let hasYellowBorders = false;
|
||||||
|
|
@ -158,7 +160,9 @@ function ExtractedResultsPage() {
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<Typography variant="h5" gutterBottom>
|
<Typography variant="h5" gutterBottom>
|
||||||
<strong>Extrahierte Kennzahlen</strong>
|
<strong>
|
||||||
|
{fundName ? `Kennzahlen extrahiert aus: ${fundName}` : "Extrahierte Kennzahlen"}
|
||||||
|
</strong>
|
||||||
</Typography>
|
</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
<Box
|
<Box
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue