Feat: Display the video field in the parser operator #9869 (#10728)

### What problem does this PR solve?

Feat: Display the video field in the parser operator #9869

### Type of change


- [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
balibabu
2025-10-22 18:59:20 +08:00
committed by GitHub
parent 0e549e96ee
commit 4910146149
5 changed files with 24 additions and 13 deletions

View File

@ -100,7 +100,7 @@ export function NodeCollapsible<T extends any[]>({
>
{nextItems.slice(0, 3).map(children)}
<CollapsibleContent className={nextClassName}>
{nextItems.slice(3).map(children)}
{nextItems.slice(3).map((x, idx) => children(x, idx + 3))}
</CollapsibleContent>
{nextItems.length > 3 && (
<CollapsibleTrigger