client/list view: refactor

This commit is contained in:
Adorian Doran 2026-02-15 19:15:58 +02:00
parent 483c57029a
commit d1a3bceaa6
3 changed files with 2 additions and 5 deletions

View File

@ -124,7 +124,6 @@
/* List item */ /* List item */
.nested-note-list-item { .nested-note-list-item {
h5 { h5 {
display: flex; display: flex;
align-items: center; align-items: center;

View File

@ -225,8 +225,7 @@ export function NoteContent({ note, trim, noChildrenList, highlightedTokens, inc
}); });
}, [ note, highlightedTokens ]); }, [ note, highlightedTokens ]);
return <div ref={contentRef} className={clsx("note-book-content", `type-${noteType}`, {"note-book-content-ready": ready})}> return <div ref={contentRef} className={clsx("note-book-content", `type-${noteType}`, {"note-book-content-ready": ready})} />;
</div>;
} }
function NoteChildren({ note, parentNote, highlightedTokens, currentLevel, expandDepth, includeArchived }: { function NoteChildren({ note, parentNote, highlightedTokens, currentLevel, expandDepth, includeArchived }: {

View File

@ -19,7 +19,6 @@ interface CardSectionProps {
subSections?: JSX.Element | JSX.Element[]; subSections?: JSX.Element | JSX.Element[];
subSectionsVisible?: boolean; subSectionsVisible?: boolean;
highlightOnHover?: boolean; highlightOnHover?: boolean;
hasAction?: boolean;
onAction?: () => void; onAction?: () => void;
} }
@ -30,7 +29,7 @@ export function CardSection(props: {children: ComponentChildren} & CardSectionPr
return <> return <>
<section className={clsx("tn-card-section", props.className, { <section className={clsx("tn-card-section", props.className, {
"tn-card-section-nested": nestingLevel > 0, "tn-card-section-nested": nestingLevel > 0,
"tn-card-section-highlight-on-hover": props.highlightOnHover || props.hasAction "tn-card-section-highlight-on-hover": props.highlightOnHover || props.onAction
})} })}
style={{"--tn-card-section-nesting-level": nestingLevel}} style={{"--tn-card-section-nesting-level": nestingLevel}}
onClick={props.onAction}> onClick={props.onAction}>