mirror of
https://github.com/ansible/awx.git
synced 2026-01-13 19:10:07 -03:30
Explicitly setting an order_by fixes the issue of workflow nodes coming back out of whack on page 2 and beyond
This commit is contained in:
parent
3f0c42c1f6
commit
0e6e116fa3
@ -49,7 +49,7 @@ export default {
|
||||
// flashing as rest data comes in. Provides the list of workflow nodes
|
||||
workflowNodes: ['workflowData', 'Rest', '$q', function(workflowData, Rest, $q) {
|
||||
var defer = $q.defer();
|
||||
Rest.setUrl(workflowData.related.workflow_nodes);
|
||||
Rest.setUrl(workflowData.related.workflow_nodes + '?order_by=id');
|
||||
Rest.get()
|
||||
.success(function(data) {
|
||||
if(data.next) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user