Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

### Fixes
- Fix `mintlify validate` failing on `docs/de/dashboard.mdx` after #228 added German „..." quotation marks inside two `<Tab title="…">` attributes — the inner straight `"` ended the JSX attribute value, then the leftover `"` produced an `Unexpected character "` parse error. Drop the inner quotes (matching how every other locale renders the tab labels) so the docs CI job passes again.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🛠️ Refactor suggestion | 🟠 Major

Append PR number to the changelog entry.

The entry is missing the PR number. As per coding guidelines, each changelog entry should end with the PR number in parentheses.

📝 Proposed fix to add PR number
-- Fix `mintlify validate` failing on `docs/de/dashboard.mdx` after `#228` added German „..." quotation marks inside two `<Tab title="…">` attributes — the inner straight `"` ended the JSX attribute value, then the leftover `"` produced an `Unexpected character "` parse error. Drop the inner quotes (matching how every other locale renders the tab labels) so the docs CI job passes again.
+- Fix `mintlify validate` failing on `docs/de/dashboard.mdx` after `#228` added German „..." quotation marks inside two `<Tab title="…">` attributes — the inner straight `"` ended the JSX attribute value, then the leftover `"` produced an `Unexpected character "` parse error. Drop the inner quotes (matching how every other locale renders the tab labels) so the docs CI job passes again (`#229`).

As per coding guidelines: Each changelog entry should be a single line: short description followed by PR number (e.g., - Add foo support (#123)).

📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- Fix `mintlify validate` failing on `docs/de/dashboard.mdx` after #228 added German „..." quotation marks inside two `<Tab title="…">` attributes — the inner straight `"` ended the JSX attribute value, then the leftover `"` produced an `Unexpected character "` parse error. Drop the inner quotes (matching how every other locale renders the tab labels) so the docs CI job passes again.
- Fix `mintlify validate` failing on `docs/de/dashboard.mdx` after `#228` added German „..." quotation marks inside two `<Tab title="…">` attributes — the inner straight `"` ended the JSX attribute value, then the leftover `"` produced an `Unexpected character "` parse error. Drop the inner quotes (matching how every other locale renders the tab labels) so the docs CI job passes again (`#229`).
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@CHANGELOG.md` at line 6, The changelog entry "Fix `mintlify validate` failing
on `docs/de/dashboard.mdx` after `#228` added German „...\" quotation marks inside
two `<Tab title=\"…\">` attributes — the inner straight `\"` ended the JSX
attribute value, then the leftover `\"` produced an `Unexpected character \"`
parse error. Drop the inner quotes (matching how every other locale renders the
tab labels) so the docs CI job passes again." is missing the PR number; append
the PR number in parentheses at the end of that single-line entry (e.g., add "
(#<PR_NUMBER>)") so the entry follows the required format.


## 0.0.9 — 2026-04-28

### Features
Expand Down
4 changes: 2 additions & 2 deletions docs/de/dashboard.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ Die Statistikleiste oben zeigt Sitzungsdauer, Gesamtanzahl der Tool-Aufrufe sowi
Eine Seite mit zwei Tabs zur Verwaltung von Richtlinien und Überprüfung von Aktivitäten.

<Tabs>
<Tab title="Tab Richtlinien"">
<Tab title="Tab Richtlinien">
- Einzelne Richtlinien mit einem Klick aktivieren oder deaktivieren (schreibt in `~/.failproofai/policies-config.json`)
- Eine Richtlinie aufklappen, um ihre Parameter zu konfigurieren (für Richtlinien, die `policyParams` unterstützen)
- Hooks für einen bestimmten Bereich installieren oder entfernen
- Einen benutzerdefinierten Pfad für die Richtliniendatei festlegen
</Tab>
<Tab title="Tab Aktivität"">
<Tab title="Tab Aktivität">
- Vollständige, seitenweise Verlaufsansicht aller Hook-Ereignisse, die über alle Sitzungen hinweg ausgelöst wurden
- Filtern nach Entscheidung, Ereignistyp, CLI (Claude Code / OpenAI Codex), Richtlinienname oder Sitzungs-ID
- Jede Zeile zeigt: Zeitstempel, Richtlinienname, Entscheidung, CLI-Badge, Tool-Name, Sitzungs-ID sowie den Grund für deny/instruct-Entscheidungen
Expand Down
Loading