hotfix/WIFI-964: Fixed alignment of Radio Columns on AP Status page

This commit is contained in:
chris-cosentino
2020-11-02 17:54:21 -05:00
parent 78d2631701
commit ca2ba14b0e

View File

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