Prevents cost information from appearing in the tooltip header (#45)

* Prevents cost information from appearing in the tooltip header

* Variable rename

* Uses new tooltip title property to give vertex tooltips their heading
This commit is contained in:
Lewis Sanchez 2022-02-17 15:27:01 -08:00 коммит произвёл GitHub
Родитель cba8fc2ff1
Коммит 0bcaf3c004
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -118,7 +118,7 @@ azdataGraph.prototype.getStyledTooltipForCell = function (cell) {
// tooltip heading for vertices only
if (!cell.edge) {
tooltip += `<div style=\"${centerText}\"><span style=\"${boldText}\">${cell.value.label}</span></div>`;
tooltip += `<div style=\"${centerText}\"><span style=\"${boldText}\">${cell.value.tooltipTitle}</span></div>`;
if(cell.value.description){
tooltip += `<div style=\"${headerBottomMargin} ${headerTopMargin}\"><span>${cell.value.description}</span></div>`;
}

Различия файлов скрыты, потому что одна или несколько строк слишком длинны