diff --git a/project/Dockerfile b/project/Dockerfile
index 591bb75..db0c480 100644
--- a/project/Dockerfile
+++ b/project/Dockerfile
@@ -17,4 +17,4 @@ COPY . .
ENV PYTHONUNBUFFERED=1
-CMD ["gunicorn", "--timeout", "600", "--workers", "2", "--bind", "0.0.0.0:5000", "app:app"]
+CMD ["gunicorn", "--timeout", "600", "--workers", "1", "--bind", "0.0.0.0:5000", "app:app"]
diff --git a/project/frontend/src/components/KennzahlenTable.tsx b/project/frontend/src/components/KennzahlenTable.tsx
index 5808a5f..db0a891 100644
--- a/project/frontend/src/components/KennzahlenTable.tsx
+++ b/project/frontend/src/components/KennzahlenTable.tsx
@@ -225,61 +225,75 @@ export default function KennzahlenTable({
) : (
-
+ Problem
+
+ Es wurden keine Kennzahlen gefunden. Bitte ergänzen!
+ > : ""
+ }
+ placement="bottom"
+ arrow
>
-
- {hasNoValue && (
-
- )}
- {editingIndex === row.setting.name ? (
- setEditValue(e.target.value)}
- onKeyDown={(e) =>
- handleKeyPress(e, row.setting.name)
- }
- onBlur={() => handleSave(row.setting.name)}
- autoFocus
- size="small"
- fullWidth
- variant="standard"
- sx={{ margin: "-8px 0" }}
+
+
+
+ {hasNoValue && (
+
+ )}
+ {editingIndex === row.setting.name ? (
+ setEditValue(e.target.value)}
+ onKeyDown={(e) =>
+ handleKeyPress(e, row.setting.name)
+ }
+ onBlur={() => handleSave(row.setting.name)}
+ autoFocus
+ size="small"
+ fullWidth
+ variant="standard"
+ sx={{ margin: "-8px 0" }}
+ />
+ ) : (
+
+ {row.extractedValues.at(0)?.entity || "—"}
+
+ )}
+
+ {
+ e.stopPropagation();
+ startEditing(
+ row.extractedValues.at(0)?.entity || "",
+ row.setting.name,
+ );
+ }}
/>
- ) : (
-
- {row.extractedValues.at(0)?.entity || "—"}
-
- )}
-
- {
- e.stopPropagation();
- startEditing(
- row.extractedValues.at(0)?.entity || "",
- row.setting.name,
- );
- }}
- />
-
+
+
+
)}