Skip to content

Commit 9c51d1b

Browse files
Remove title prop from ClickableLocation
1 parent 814ba24 commit 9c51d1b

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

extensions/ql-vscode/src/view/results/locations/ClickableLocation.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ interface Props {
99
loc: ResolvableLocationValue;
1010
label: string;
1111
databaseUri: string;
12-
title?: string;
1312
onClick?: () => void;
1413
}
1514

@@ -24,7 +23,6 @@ export function ClickableLocation({
2423
loc,
2524
label,
2625
databaseUri,
27-
title,
2826
onClick: onClick,
2927
}: Props): JSX.Element {
3028
const handleClick = useCallback(

extensions/ql-vscode/src/view/results/locations/Location.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ export function Location({
4848
loc={resolvableLoc}
4949
label={displayLabel}
5050
databaseUri={databaseUri}
51-
title={title}
5251
onClick={onClick}
5352
/>
5453
);

0 commit comments

Comments
 (0)