mirror of
https://github.com/Telecominfraproject/wlan-cloud-ui.git
synced 2025-10-30 10:22:37 +00:00
used correct dataIndex for AP Table Channels
This commit is contained in:
@@ -89,8 +89,8 @@ const accessPointsTableColumns = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'CHANNEL',
|
title: 'CHANNEL',
|
||||||
dataIndex: 'channel',
|
dataIndex: ['status', 'channel', 'detailsJSON', 'channelNumberStatusDataMap'],
|
||||||
render: renderTableCell,
|
render: text => renderTableCell(Object.values(text ?? [])),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'OCCUPANCY',
|
title: 'OCCUPANCY',
|
||||||
|
|||||||
@@ -70,6 +70,9 @@ export const FILTER_EQUIPMENT = gql`
|
|||||||
firmware {
|
firmware {
|
||||||
detailsJSON
|
detailsJSON
|
||||||
}
|
}
|
||||||
|
channel {
|
||||||
|
detailsJSON
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
context
|
context
|
||||||
@@ -122,6 +125,9 @@ export const GET_EQUIPMENT = gql`
|
|||||||
osPerformance {
|
osPerformance {
|
||||||
detailsJSON
|
detailsJSON
|
||||||
}
|
}
|
||||||
|
channel {
|
||||||
|
detailsJSON
|
||||||
|
}
|
||||||
}
|
}
|
||||||
model
|
model
|
||||||
alarmsCount
|
alarmsCount
|
||||||
|
|||||||
Reference in New Issue
Block a user