Skip to content

Commit

Permalink
Merge pull request #164 from cabcookie:improve-person-mention
Browse files Browse the repository at this point in the history
fix: crash in navigation menu
  • Loading branch information
cabcookie authored Aug 6, 2024
2 parents d717769 + ab2dc21 commit 6b5e077
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion components/navigation-menu/NavigationMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,9 @@ const NavigationMenu = () => {
<CommandInput
placeholder="Type a command or search…"
value={search}
onValueChange={setSearch}
onValueChange={(val) => {
setSearch(val);
}}
onKeyDown={keyboardEventHandler}
onKeyUp={keyboardEventHandler}
/>
Expand Down
4 changes: 3 additions & 1 deletion docs/releases/next.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# CRM-Projekt Detailseite eingeführt (Version :VERSION)
# Crash in Hauptmenü behoben (Version :VERSION)

- Wenn man im Hauptmenü zunächst einen Suchbegriff eingegeben und diesen dann gelöscht hatte, ist die Applikation abgestürzt. Das passiert nun nicht mehr.

0 comments on commit 6b5e077

Please sign in to comment.