From 7feaf90eab36e721f110335f8281e226d289eeb3 Mon Sep 17 00:00:00 2001 From: Lukas Date: Thu, 12 Mar 2026 10:45:39 +0100 Subject: [PATCH] Add "custom creature" option to bestiary suggestions dropdown When typing a name that partially matches bestiary entries, users couldn't access the custom creature fields (Init/AC/MaxHP). Now a prominent option at the top of the dropdown lets users dismiss suggestions and add a custom creature instead, with an Esc hint. Co-Authored-By: Claude Opus 4.6 --- apps/web/src/components/action-bar.tsx | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/apps/web/src/components/action-bar.tsx b/apps/web/src/components/action-bar.tsx index 8824461..4cc0451 100644 --- a/apps/web/src/components/action-bar.tsx +++ b/apps/web/src/components/action-bar.tsx @@ -231,6 +231,22 @@ export function ActionBar({ /> {suggestions.length > 0 && (
+
    {suggestions.map((result, i) => { const key = creatureKey(result);