Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
"react": "^19.1.0",
"react-dom": "^19.1.0",
"@textcortex/jsondoc": "file:/Users/abrehamgezahegn/Documents/projects/textcortex/JSON-DOC/typescript"

},
"devDependencies": {
"@eslint/js": "^9.25.0",
Expand Down

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

Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,51 @@
}
},
"children": [
{
"object": "block",
"id": "bk_01jxm798e7eantmhjr295qsqm9",
"type": "bulleted_list_item",
"created_time": "2025-06-13T08:42:43.392470Z",
"created_by": {
"object": "user",
"id": "bcf6c03e-51a1-4f05-97d8-d616405b42a2"
},
"has_children": false,
"metadata": {
"origin": {
"file_id": "file_01jxm77f69e09ssze1s203bb2c",
"page_num": 3
}
},
"bulleted_list_item": {
"rich_text": [
{
"type": "text",
"text": {
"content": "No manual migration, no permanent duplication \\rightarrow all data under single user namespace"
},
"annotations": {},
"plain_text": "No manual migration, no permanent duplication \\rightarrow all data under single user namespace"
},
{
"type": "text",
"text": {
"content": "No manual migration, no permanent duplication \\rightarrow all data under single user namespace"
},
"annotations": {},
"plain_text": "No manual migration, no permanent duplication \\rightarrow all data under single user namespace"
},
{
"type": "text",
"text": {
"content": "No manual migration, no permanent duplication \\rightarrow all data under single user namespace"
},
"annotations": {},
"plain_text": "No manual migration, no permanent duplication \\rightarrow all data under single user namespace"
}
]
}
},
{
"object": "block",
"id": "blk_heading1_top",
Expand Down
1 change: 1 addition & 0 deletions typescript/src/renderer/components/HighlightNavigation.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from "react";

import { useHighlightNavigation } from "../hooks/useHighlightNavigation";

interface HighlightNavigationProps {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ export const ListItemBlockRenderer: React.FC<ListItemBlockRendererProps> = ({
<div className="notion-list-content">
<RichTextRenderer richText={listData?.rich_text || []} />
</div>

{/* Render children blocks recursively */}
{block.children && block.children.length > 0 && (
<div
Expand Down
4 changes: 2 additions & 2 deletions typescript/src/renderer/styles/typography.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.notion-list-content {
/* .notion-list-content {
display: flex;
align-items: center;
}
} */

/* Heading Blocks */
.notion-header-block,
Expand Down
Loading