mirror of
https://github.com/Telecominfraproject/wlan-cloud-ui-library.git
synced 2026-04-05 11:44:39 +00:00
hotfix/WIFI-964: Fixed alignment of Radio Columns on AP Status page
This commit is contained in:
@@ -46,7 +46,7 @@ const Status = ({ data }) => {
|
||||
<div className={styles.InlineDiv}>
|
||||
{sortRadioTypes(Object.keys(data?.details?.radioMap)).map(i => (
|
||||
<span key={i} className={styles.spanStyle}>
|
||||
{dataIndex ? obj?.[i]?.[dataIndex] || 'N/A' : obj[i] || 'N/A'}
|
||||
{(dataIndex ? obj?.[i]?.[dataIndex] : obj?.[i]) || 'N/A'}
|
||||
</span>
|
||||
))}
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user