Add TaskInstance state to TI Tooltip to be colour-blind friendlier (#8910)

Currently there is no way to determine the state of a TaskInstance in the graph view or tree view for people with colour blindness

Approximately 4.5% of people experience some form of colour vision deficiency
This commit is contained in:
Joe Harris 2020-05-21 10:53:54 +01:00 коммит произвёл GitHub
Родитель a9dfd7d1cf
Коммит f3f74c7320
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -61,6 +61,9 @@ function generateTooltipDateTimes(startDate, endDate, dagTZ) {
export default function tiTooltip(ti, {includeTryNumber = false} = {}) {
let tt = '';
if (ti.state !== undefined) {
tt += `<strong>Status:</strong> ${escapeHtml(ti.state)}<br><br>`;
}
if (ti.task_id !== undefined) {
tt += `Task_id: ${escapeHtml(ti.task_id)}<br>`;
}