diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-03-13 18:19:48 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-03-13 18:19:48 +0000 |
commit | f8957ca843f9e2544712c0e5cbcca6ebcd422c42 (patch) | |
tree | 6489fea392a08f222ee7956bf448967f32909788 /dashboard | |
parent | 8f4ba155af502e9055b222039e2d4ed742adb9ab (diff) | |
parent | 65335b0221f8781443f33829719f8c0a80105040 (diff) |
Merge "Add column ordering to host list"
Diffstat (limited to 'dashboard')
-rw-r--r-- | dashboard/src/templates/resource/hosts.html | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/dashboard/src/templates/resource/hosts.html b/dashboard/src/templates/resource/hosts.html index 4a53b45..4bf64e0 100644 --- a/dashboard/src/templates/resource/hosts.html +++ b/dashboard/src/templates/resource/hosts.html @@ -35,10 +35,7 @@ $(document).ready(function () { $('#table').DataTable({ scrollX: true, - columnDefs: [ - {type: 'status', targets: 6} - ], - "order": [[6, "asc"]] + "order": [[0, "asc"]] }); }); </script> |