Skip to content
This repository was archived by the owner on Nov 24, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
- Switched Delivery Service active state to a three-value system, adding a state that will be used to prevent cache servers from deploying DS configuration.

### Fixed
- [#7216](https://github.com/apache/trafficcontrol/pull/7216) *Traffic Portal* Fixed sort for Server's Capabilities Table
- [#4428](https://github.com/apache/trafficcontrol/issues/4428) *Traffic Ops* Fixed Internal Server Error with POST to `profileparameters` when POST body is empty
- [#7179](https://github.com/apache/trafficcontrol/issues/7179) *Traffic Portal* Fixed search filter for Delivery Service Table
- [#7174](https://github.com/apache/trafficcontrol/issues/7174) *Traffic Portal* Fixed topologies sort (table and Delivery Service's form)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ var TableAssignServersPerCapabilityController = function(servers, serverCapabili
field: "hostName",
checkboxSelection: true,
headerCheckboxSelection: true,
sort: "asc",
},
{
headerName: "Type",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
</tr>
</thead>
<tbody>
<tr ng-click="editServerCapability(sc.serverCapability)" ng-repeat="sc in ::serverCapabilities" context-menu="contextMenuItems">
<tr ng-click="editServerCapability(sc.serverCapability)" ng-repeat="sc in ::serverCapabilities | orderBy :'serverCapability'" context-menu="contextMenuItems">
<td name="name" data-search="^{{::sc.serverCapability}}$">{{::sc.serverCapability}}</td>
<td style="text-align: right;">
<a class="link action-link" title="Remove Server Capability" ng-click="confirmRemoveCapability(sc.serverCapability, $event)"><i class="fa fa-sm fa-chain-broken"></i></a>
Expand Down