Compare commits

..

No commits in common. "68f6dad62f8923c96758f0dd66cca84adbaf8311" and "298b43e39950f1eeac19d51d91143c9c78da1a4b" have entirely different histories.

5 changed files with 23 additions and 26 deletions

View file

@ -325,16 +325,16 @@ function RunsLogSection({ source }: RunsLogSectionProps) {
<table className="runs-table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Статус</th>
<th scope="col">Старт</th>
<th scope="col">Heartbeat</th>
<th scope="col">Anchors</th>
<th scope="col">Lots</th>
<th scope="col">Houses</th>
<th scope="col">Detail</th>
<th scope="col">Errors</th>
<th scope="col">Действие</th>
<th>#</th>
<th>Статус</th>
<th>Старт</th>
<th>Heartbeat</th>
<th>Anchors</th>
<th>Lots</th>
<th>Houses</th>
<th>Detail</th>
<th>Errors</th>
<th>Действие</th>
</tr>
</thead>
<tbody>

View file

@ -238,7 +238,7 @@ function CianCookiesSection() {
});
const testAuthQuery = useQuery({
queryKey: ["cian-test-auth", "manual"],
queryKey: ["cian-test-auth"],
queryFn: () =>
apiFetch<TestAuthResp>("/api/v1/admin/scrape/cian/test-auth"),
enabled: false,

View file

@ -279,8 +279,6 @@ export function SystemHealthSection() {
{name}:
</span>
<span
role="img"
aria-label={ok ? "статус: доступен" : "статус: недоступен"}
style={{
width: 8,
height: 8,
@ -301,11 +299,11 @@ export function SystemHealthSection() {
<table className="runs-table">
<thead>
<tr>
<th scope="col">Провайдер</th>
<th scope="col">Прокси (host:port)</th>
<th scope="col">Текущий IP</th>
<th scope="col">Режим</th>
<th scope="col">Действие</th>
<th>Провайдер</th>
<th>Прокси (host:port)</th>
<th>Текущий IP</th>
<th>Режим</th>
<th>Действие</th>
</tr>
</thead>
<tbody>

View file

@ -238,13 +238,13 @@ export function RunsTable({ source }: RunsTableProps) {
<table className="runs-table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Тип</th>
<th scope="col">Статус</th>
<th scope="col">Старт</th>
<th scope="col">Финиш</th>
<th scope="col">Лоты / Ошибки</th>
<th scope="col">Действие</th>
<th>#</th>
<th>Тип</th>
<th>Статус</th>
<th>Старт</th>
<th>Финиш</th>
<th>Лоты / Ошибки</th>
<th>Действие</th>
</tr>
</thead>
<tbody>

View file

@ -140,7 +140,6 @@ export function Topbar({ active }: TopbarProps) {
key={item.key}
href={`${API_BASE_URL}${item.href}`}
className={item.key === active ? "is-active" : undefined}
aria-current={item.key === active ? "page" : undefined}
>
{item.label}
</a>