replaced description by ifAlias to fix the sort on Description

This commit is contained in:
dGs-
2019-09-27 01:38:27 +02:00
committed by Jellyfrog
parent ee2a847c0b
commit dada33ae5e
2 changed files with 2 additions and 2 deletions

View File

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

View File

@@ -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,
);
}