Export: Klassifizierung (offen/dienstgebrauch/vertraulich) komplett entfernt
Dieser Commit ist enthalten in:
@@ -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);
|
||||
|
||||
In neuem Issue referenzieren
Einen Benutzer sperren