+
${rank}
@@ -2155,16 +2155,16 @@ class AIQueryInterface {
${pros?.length ? `
✓ Vorteile
-
- ${pros.map(pro => `- ${sanitizeText(pro)}
`).join('')}
+
+ ${pros.map(pro => `- ${sanitizeText(pro)}
`).join('')}
` : ''}
${cons?.length ? `
✗ Nachteile
-
- ${cons.map(con => `- ${sanitizeText(con)}
`).join('')}
+
+ ${cons.map(con => `- ${sanitizeText(con)}
`).join('')}
` : ''}
@@ -2231,15 +2231,6 @@ class AIQueryInterface {
}
}
- getSuitabilityText(score) {
- const texts = {
- high: 'GUT GEEIGNET',
- medium: 'GEEIGNET',
- low: 'VIELLEICHT GEEIGNET'
- };
- return texts[score] || 'GEEIGNET';
- }
-
showLoading() {
showElement(this.elements.loading);
}