Skip to content

Commit d66331f

Browse files
author
prima
committed
fix: Another fix for smaller models not handling arrays right
1 parent 7bae236 commit d66331f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

klite.embd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25686,7 +25686,7 @@ else
2568625686
case "object":
2568725687
if (Array.isArray(obj))
2568825688
{
25689-
output += `${baseIndent}Array:\n${obj.map(elem => `${baseIndent}\tElement:\n${objToText(elem, depth + 2)}`).join("\n")}`
25689+
output += `${baseIndent}Array:\n${obj.map(elem => `${baseIndent}\t->\n${objToText(elem, depth + 2)}`).join("\n")}`
2569025690
}
2569125691
else
2569225692
{

0 commit comments

Comments
 (0)