Skip to content

Commit

Permalink
Merge branch 'master' into document-recursion-error-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AceTheCreator authored Dec 9, 2024
2 parents f62e6c1 + 42bb467 commit cec0b12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/src/containers/Sidebar/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const Sidebar: React.FunctionComponent = () => {
<li key={`menu-message-list-${message.name() ?? index}`}>
<a
className="flex break-words no-underline text-gray-700 mt-2 hover:text-gray-900"
href={`#message-${message.name()}`}
href={`#message-${message.name() ?? message.id()}`}
onClick={() => setShowSidebar(false)}
>
<div className="break-all inline-block">{message.id()}</div>
Expand Down

0 comments on commit cec0b12

Please sign in to comment.