adjust tooltip direction

deepsource-autofix-76c6eb20
Dan Gowans 2023-04-13 10:19:54 -04:00
parent 092decd6e1
commit 0e673929e2
3 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
let occupantsHTML = '';
for (const occupant of lotOccupancy.lotOccupancyOccupants) {
occupantsHTML +=
'<li class="has-tooltip-right" data-tooltip="' +
'<li class="has-tooltip-left" data-tooltip="' +
cityssm.escapeHTML((_a = occupant.lotOccupantType) !== null && _a !== void 0 ? _a : '') +
'">' +
('<span class="fa-li"><i class="fas fa-fw fa-' +

View File

@ -72,7 +72,7 @@ declare const cityssm: cityssmGlobal
for (const occupant of lotOccupancy.lotOccupancyOccupants!) {
occupantsHTML +=
'<li class="has-tooltip-right" data-tooltip="' +
'<li class="has-tooltip-left" data-tooltip="' +
cityssm.escapeHTML(occupant.lotOccupantType ?? '') +
'">' +
('<span class="fa-li"><i class="fas fa-fw fa-' +

File diff suppressed because one or more lines are too long