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

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

@ -61,7 +61,7 @@ import { ContentSize } from 'azure-devops-ui/Callout'
if (startLine === undefined) return undefined // tryOr fallthrough.
startLine -= contextRegion.startLine ?? 0
startColumn = Math.max(0, startColumn - 1 - minLeadingWhitespace)
startColumn = Math.max(0, startColumn - 1 - minLeadingWhitespace) // startColumn is 1-based, string.slice() is 0-based, thus the -1 adjustment.
endLine -= contextRegion.startLine ?? 0
endColumn = Math.max(0, endColumn - minLeadingWhitespace)