mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
replaced description by ifAlias to fix the sort on Description
This commit is contained in:
@@ -60,7 +60,7 @@ if ($vars['errors']) {
|
||||
data-css-class="red">Errors Out
|
||||
</th>
|
||||
<th data-column-id="ifType">Media</th>
|
||||
<th data-column-id="description">Description</th>
|
||||
<th data-column-id="ifAlias">Description</th>
|
||||
<th data-column-id="actions" data-sortable="false" data-searchable="false">Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
|
@@ -195,7 +195,7 @@ foreach (dbFetchRows($query, $param) as $port) {
|
||||
'ifInErrors' => $port['ifInErrors'],
|
||||
'ifOutErrors' => $port['ifOutErrors'],
|
||||
'ifType' => humanmedia($port['ifType']),
|
||||
'description' => $port['ifAlias'],
|
||||
'ifAlias' => $port['ifAlias'],
|
||||
'actions' => $actions,
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user