1 parent 17fb177 commit c4524e5Copy full SHA for c4524e5
1 file changed
web/server/api/endpoints/files.py
@@ -181,6 +181,6 @@ def _get_file_with_content(file_path: Path, relative_path: str) -> models.File:
181
182
return models.File(
183
name=file_path.name,
184
- path=relative_path,
+ path=str(Path(relative_path).as_posix()),
185
content=content,
186
)
0 commit comments