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"> <table className="runs-table">
<thead> <thead>
<tr> <tr>
<th scope="col">#</th> <th>#</th>
<th scope="col">Статус</th> <th>Статус</th>
<th scope="col">Старт</th> <th>Старт</th>
<th scope="col">Heartbeat</th> <th>Heartbeat</th>
<th scope="col">Anchors</th> <th>Anchors</th>
<th scope="col">Lots</th> <th>Lots</th>
<th scope="col">Houses</th> <th>Houses</th>
<th scope="col">Detail</th> <th>Detail</th>
<th scope="col">Errors</th> <th>Errors</th>
<th scope="col">Действие</th> <th>Действие</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>

View file

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

View file

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

View file

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

View file

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