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 details
} }
} }
baseMacAddress
manufacturer
status { status {
firmware { firmware {
detailsJSON detailsJSON
} }
protocol { protocol {
detailsJSON detailsJSON
details {
reportedMacAddr
manufacturer
}
} }
radioUtilization { radioUtilization {
detailsJSON detailsJSON

View File

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

View File

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