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 */
.nested-note-list-item {
h5 {
display: flex;
align-items: center;

View File

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

View File

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