You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(dashboard): posix-normalize workspace_symbol_search result path
_workspace_match built the returned match path with
str(Path(file_path).relative_to(root)), which yields backslash
separators on Windows. The existing test only asserts the response
shape, not the separator, so Windows CI didn't catch it.
Normalize with .replace(os.sep, "/"), matching the sibling /code/*
fixes. No-op on posix.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
0 commit comments