Skip to content

Commit 81e4863

Browse files
matej21claude
andcommitted
fix: remove trailing slash from folder names in file tree
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 58ca143 commit 81e4863

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/okena-files/src/file_tree.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ pub fn expandable_folder_row(
8585
.text_color(rgb(t.text_primary))
8686
.overflow_hidden()
8787
.whitespace_nowrap()
88-
.child(format!("{name}/")),
88+
.child(name.to_string()),
8989
)
9090
}
9191

0 commit comments

Comments
 (0)