This commit is contained in:
Jeff King 2021-05-10 10:55:03 -07:00
Родитель 2fda5b0519
Коммит 62e4941d1c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 5E5F5F7EAAF929E4
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -49,7 +49,11 @@ export function renderPathCell(result: Result) {
}
}
// Example of href scenario:
// uri = src\Prototypes\README.md
// href = https://org.visualstudio.com/project/_git/repo?path=%2Fsrc%2FPrototypes%2FREADME.md&_a=preview
const href = artLoc?.properties?.['href']
const runArtContentsText = runArt?.contents?.text
const repositoryUri = result.run.versionControlProvenance?.[0]?.repositoryUri
const hostname = getHostname(repositoryUri)
@ -105,7 +109,7 @@ export function renderPathCell(result: Result) {
{tryOr(() => {
if (!uri) throw undefined
return <div className={rowClasses}>
<TooltipSpan overflowOnly={true} text={uri}>
<TooltipSpan overflowOnly={true} text={href ?? uri}>
{tryLink(
getHref,
uriWithEllipsis,