Skip to content

Commit

Permalink
fix rare search UI issue
Browse files Browse the repository at this point in the history
  • Loading branch information
BoringBoredom committed Feb 17, 2024
1 parent f863d79 commit 6b49ccb
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 72 deletions.
142 changes: 71 additions & 71 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion src/components/FormUi/SearchUi/SearchUi.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ export default function SearchUi({
</Table.Thead>
<Table.Tbody>
{found.map((entry, index) => (
<Table.Tr key={index.toString() + entry.formId}>
<Table.Tr
key={index.toString() + entry.name + entry.formId + entry.type}
>
<Table.Td>{entry.name}</Table.Td>
<Table.Td>{entry.type}</Table.Td>
<Table.Td
Expand Down

0 comments on commit 6b49ccb

Please sign in to comment.