Skip to content
This repository was archived by the owner on Aug 1, 2025. It is now read-only.

Commit 996e08e

Browse files
committed
fix tooltips for dirname
1 parent 8d5a4cf commit 996e08e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vscode/webviews/components/FileLink.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export const FileLink: React.FunctionComponent<
100100
? IGNORE_WARNING
101101
: isTooLarge
102102
? `${LIMIT_WARNING}${isTooLargeReason ? `: ${isTooLargeReason}` : ''}`
103-
: pathWithRange
103+
: decodeURIComponent(pathWithRange)
104104
return {
105105
path: pathToDisplay,
106106
range: range ? `${displayLineRange(range)}` : undefined,

0 commit comments

Comments
 (0)