Merge pull request #83 from Telecominfraproject/bugfix/NETEXP-783

bugfix/NETEXP-783: AP table uses baseMacAddress and manufacturer
This commit is contained in:
Sean Macfarlane
2020-12-14 22:30:34 -05:00
committed by GitHub
3 changed files with 6 additions and 8 deletions

View File

@@ -42,16 +42,14 @@ const GET_EQUIPMENT = gql`
details
}
}
baseMacAddress
manufacturer
status {
firmware {
detailsJSON
}
protocol {
detailsJSON
details {
reportedMacAddr
manufacturer
}
}
radioUtilization {
detailsJSON

View File

@@ -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,
},
{

View File

@@ -42,12 +42,12 @@ export const FILTER_EQUIPMENT = gql`
profile {
name
}
baseMacAddress
manufacturer
status {
protocol {
details {
reportedIpV4Addr
reportedMacAddr
manufacturer
}
}
osPerformance {