This commit is contained in:
Jeff King 2021-09-01 17:14:54 -07:00
Родитель b1bd3f20f0
Коммит c856193689
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 5E5F5F7EAAF929E4
1 изменённых файлов: 1 добавлений и 0 удалений

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

@ -60,6 +60,7 @@ import { ContentSize } from 'azure-devops-ui/Callout'
// If startLine is undefined, then it not line/column-specified and likely offset/length-specified. The later is not currently supported.
if (startLine === undefined) return undefined // tryOr fallthrough.
startLine -= contextRegion.startLine ?? 0
startColumn = Math.max(0, startColumn - 1 - minLeadingWhitespace)
endLine -= contextRegion.startLine ?? 0
endColumn = Math.max(0, endColumn - minLeadingWhitespace)