mirror of
https://github.com/Telecominfraproject/wlan-cloud-ui.git
synced 2025-10-30 02:12:39 +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
|
||||
}
|
||||
}
|
||||
baseMacAddress
|
||||
manufacturer
|
||||
status {
|
||||
firmware {
|
||||
detailsJSON
|
||||
}
|
||||
protocol {
|
||||
detailsJSON
|
||||
details {
|
||||
reportedMacAddr
|
||||
manufacturer
|
||||
}
|
||||
}
|
||||
radioUtilization {
|
||||
detailsJSON
|
||||
|
||||
@@ -59,12 +59,12 @@ const accessPointsTableColumns = [
|
||||
},
|
||||
{
|
||||
title: 'MAC',
|
||||
dataIndex: ['status', 'protocol', 'details', 'reportedMacAddr'],
|
||||
dataIndex: 'baseMacAddress',
|
||||
render: renderTableCell,
|
||||
},
|
||||
{
|
||||
title: 'MANUFACTURER',
|
||||
dataIndex: ['status', 'protocol', 'details', 'manufacturer'],
|
||||
dataIndex: 'manufacturer',
|
||||
render: renderTableCell,
|
||||
},
|
||||
{
|
||||
|
||||
@@ -42,12 +42,12 @@ export const FILTER_EQUIPMENT = gql`
|
||||
profile {
|
||||
name
|
||||
}
|
||||
baseMacAddress
|
||||
manufacturer
|
||||
status {
|
||||
protocol {
|
||||
details {
|
||||
reportedIpV4Addr
|
||||
reportedMacAddr
|
||||
manufacturer
|
||||
}
|
||||
}
|
||||
osPerformance {
|
||||
|
||||
Reference in New Issue
Block a user