fix: update preview-page bug fix sights

This commit is contained in:
2025-11-26 19:37:26 +03:00
parent aaeaed3fa5
commit 11133b6839
4 changed files with 111 additions and 30 deletions

View File

@@ -51,8 +51,8 @@ export const StationListPage = observer(() => {
},
},
{
field: "system_name",
headerName: "Системное название",
field: "description",
headerName: "Описание",
flex: 1,
renderCell: (params: GridRenderCellParams) => {
return (
@@ -130,7 +130,7 @@ export const StationListPage = observer(() => {
const rows = filteredStations().map((station: any) => ({
id: station.id,
name: station.name,
system_name: station.system_name,
description: station.description,
direction: station.direction,
}));