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