Merge branch 'radical-new-docs' of ssh://codeberg.org/vvolhejn/strudel into radical-new-docs

This commit is contained in:
Václav Volhejn
2026-01-17 19:24:41 +01:00
2 changed files with 6 additions and 6 deletions
@@ -1,4 +1,4 @@
import { useEffect, useMemo, useState } from 'react';
import { useEffect, useMemo, useState, Fragment } from 'react';
import jsdocJson from '../../../../../doc.json';
import { Textbox } from '../textbox/Textbox';
@@ -147,9 +147,8 @@ export function Reference() {
)}
<div className="flex flex-col h-full overflow-y-auto gap-1.5 bg-background bg-opacity-50 rounded-md">
{searchVisibleFunctions.map((entry, i) => (
<>
<Fragment key={`entry-${entry.name}`}>
<a
key={`entry-${entry.name}`}
className={
'cursor-pointer flex-none hover:bg-lineHighlight overflow-x-hidden px-1 text-ellipsis ' +
(entry.name === selectedFunction ? 'bg-lineHighlight font-bold' : '')
@@ -164,7 +163,7 @@ export function Reference() {
>
{entry.name}
</a>{' '}
</>
</Fragment>
))}
</div>
</div>