Загрузка данных


<td colspan="7" class="px-4 py-6 text-center text-sm text-red-600">
<td colspan="5" class="px-4 py-6 text-center text-sm text-red-600">

            <td colspan="7" class="px-4 py-6 text-center text-sm text-gray-500">
            <td colspan="5" class="px-4 py-6 text-center text-sm text-gray-500">




искать
return (
            '<tr class="hover:bg-gray-50">' +

заменить ретерн
          return (
            '<tr class="hover:bg-gray-50">' +
              `<td class="px-4 py-2 text-sm">` +
                `<a href="/reports/${id}" class="text-blue-600 hover:underline" target="_blank" rel="noopener noreferrer">` +
                  `Запуск #${id}` +
                `</a>` +
              `</td>` +
              `<td class="px-4 py-2 text-sm text-gray-600">${startDate}</td>` +
              `<td class="px-4 py-2 text-sm text-gray-600">${endDate}</td>` +
              `<td class="px-4 py-2 text-sm text-gray-600">${stand}</td>` +
              `<td class="px-4 py-2 text-sm font-semibold ${statusClass}" style="${statusStyle}">${status}</td>` +
            "</tr>"
          );