Skip to content

Commit 10b4f04

Browse files
authored
fix: Using minus sign for perfect expander alignment (#680)
1 parent 5bf5202 commit 10b4f04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jsmind.view_provider.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ export class ViewProvider {
600600
return node.children.length > 99 ? '...' : node.children.length;
601601
}
602602
if (style === 'char') {
603-
return node.expanded ? '-' : '+';
603+
return node.expanded ? '' : '+';
604604
}
605605
}
606606

0 commit comments

Comments
 (0)