Skip to content

Commit

Permalink
Merge pull request #1327 from pi-hole/tweak/dhcpTableOrdering
Browse files Browse the repository at this point in the history
Set default sort on DHCP lease tables to that of Hostname for ease of Access
  • Loading branch information
PromoFaux authored May 18, 2020
2 parents f7d23ca + d47d284 commit 80d7d89
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/pi-hole/js/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,8 @@ $(document).ready(function () {
paging: false,
scrollCollapse: true,
scrollY: "200px",
scrollX: true
scrollX: true,
order: [[2, "asc"]]
});
}

Expand All @@ -184,7 +185,8 @@ $(document).ready(function () {
paging: false,
scrollCollapse: true,
scrollY: "200px",
scrollX: true
scrollX: true,
order: [[2, "asc"]]
});
}

Expand Down

0 comments on commit 80d7d89

Please sign in to comment.