Skip to content

Commit

Permalink
fix(codeBrowser): fix broken tree view on Windows. (#3528)
Browse files Browse the repository at this point in the history
  • Loading branch information
icycodes authored Dec 8, 2024
1 parent 0a57a66 commit 5b6c845
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion crates/tabby-git/src/serve_git.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ fn resolve<'a>(
basename: relpath
.join(entry.name().expect("failed to resolve entry name"))
.display()
.to_string(),
.to_string()
.replace("\\", "/"),
}
})
.collect::<Vec<_>>(),
Expand Down

0 comments on commit 5b6c845

Please sign in to comment.