mirror of
https://github.com/Telecominfraproject/wlan-cloud-ui.git
synced 2025-11-02 11:47:51 +00:00
Merge pull request #83 from Telecominfraproject/bugfix/NETEXP-783
bugfix/NETEXP-783: AP table uses baseMacAddress and manufacturer
This commit is contained in:
@@ -42,16 +42,14 @@ const GET_EQUIPMENT = gql`
|
|||||||
details
|
details
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
baseMacAddress
|
||||||
|
manufacturer
|
||||||
status {
|
status {
|
||||||
firmware {
|
firmware {
|
||||||
detailsJSON
|
detailsJSON
|
||||||
}
|
}
|
||||||
protocol {
|
protocol {
|
||||||
detailsJSON
|
detailsJSON
|
||||||
details {
|
|
||||||
reportedMacAddr
|
|
||||||
manufacturer
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
radioUtilization {
|
radioUtilization {
|
||||||
detailsJSON
|
detailsJSON
|
||||||
|
|||||||
@@ -59,12 +59,12 @@ const accessPointsTableColumns = [
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'MAC',
|
title: 'MAC',
|
||||||
dataIndex: ['status', 'protocol', 'details', 'reportedMacAddr'],
|
dataIndex: 'baseMacAddress',
|
||||||
render: renderTableCell,
|
render: renderTableCell,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'MANUFACTURER',
|
title: 'MANUFACTURER',
|
||||||
dataIndex: ['status', 'protocol', 'details', 'manufacturer'],
|
dataIndex: 'manufacturer',
|
||||||
render: renderTableCell,
|
render: renderTableCell,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -42,12 +42,12 @@ export const FILTER_EQUIPMENT = gql`
|
|||||||
profile {
|
profile {
|
||||||
name
|
name
|
||||||
}
|
}
|
||||||
|
baseMacAddress
|
||||||
|
manufacturer
|
||||||
status {
|
status {
|
||||||
protocol {
|
protocol {
|
||||||
details {
|
details {
|
||||||
reportedIpV4Addr
|
reportedIpV4Addr
|
||||||
reportedMacAddr
|
|
||||||
manufacturer
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
osPerformance {
|
osPerformance {
|
||||||
|
|||||||
Reference in New Issue
Block a user