Skip to content

Commit d0f3cad

Browse files
committed
Indent closing brace in eval context
1 parent b5296c6 commit d0f3cad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/view/eval.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ pub fn draw_properties(
161161

162162
if !property.children.is_empty() {
163163
draw_properties(theme, property.children.defined_properties(), lines, level + 1, filter_path);
164-
lines.push(Line::from(vec![Span::raw(delimiters.1)]).style(theme.syntax_brace));
164+
lines.push(Line::from(vec![Span::raw(format!("{}{}", " ".repeat(level), delimiters.1))]).style(theme.syntax_brace));
165165
}
166166
}
167167
}

0 commit comments

Comments
 (0)