Export: Klassifizierung (offen/dienstgebrauch/vertraulich) komplett entfernt

Dieser Commit ist enthalten in:
Claude Dev
2026-03-25 23:50:57 +01:00
Ursprung a2aaa061d4
Commit d0f99f4e5b
12 geänderte Dateien mit 5634 neuen und 47 gelöschten Zeilen

Datei anzeigen

@@ -2140,7 +2140,6 @@ const App = {
if (!this.currentIncidentId) return;
const scope = document.querySelector('input[name="export-scope"]:checked').value;
const format = document.querySelector('input[name="export-format"]:checked').value;
const classification = document.getElementById('export-classification').value;
const btn = document.getElementById('export-submit-btn');
const origText = btn.textContent;
@@ -2148,7 +2147,7 @@ const App = {
btn.textContent = scope === 'summary' ? 'KI generiert Executive Summary...' : 'Wird erstellt...';
try {
const response = await API.exportReport(this.currentIncidentId, format, scope, classification);
const response = await API.exportReport(this.currentIncidentId, format, scope);
if (!response.ok) {
const err = await response.json().catch(() => ({}));
throw new Error(err.detail || 'Fehler ' + response.status);