Update CHANGELOG

This commit is contained in:
2026-08-24 16:45:18 -07:00
parent 0854bbc3c5
commit 47855c0332

View File

@@ -4,6 +4,8 @@ All notable changes to this project are logged here, newest first. This file sta
## 2026-08-24
- Changed: enlarged the Breadcrumbs working area. The selected breadcrumb's editor card now has more padding, a taller minimum height, and taller text fields, so it uses more of the page instead of sitting as a small box.
- Changed: the breadcrumb delete button now reads "Delete" instead of a bare "✕".
- Fixed: every delete action now shows a confirmation before it deletes. Replaced the browser's plain `confirm()` popup with a custom on-brand modal (a card with a red left accent, matching the app's existing "attention" styling, on a dimmed backdrop). Covers cluster delete, issue delete, breadcrumb delete, action delete, scope item delete, priority-rank item delete, decision delete, and both Reset buttons. Several of these had no confirmation at all before this change.
- Fixed: the new breadcrumb list was rendering as single-character vertical columns instead of a normal list. Cause: the list used a `<nav>` tag, which collided with the app's existing `nav{display:flex}` rule written for the top tab bar. Changed the element to a `<div>`.
- Fixed: the app was capped at `max-width:1500px` and centered, wasting space on wide screens. Removed the cap so the app fills the browser width.