Skip to content

Commit

Permalink
order available columns #14219
Browse files Browse the repository at this point in the history
  • Loading branch information
abhi1693 authored and jeremystretch committed Nov 9, 2023
1 parent 60e9832 commit b0f2de5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion netbox/netbox/tables/tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def name(self):

@property
def available_columns(self):
return self._get_columns(visible=False)
return sorted(self._get_columns(visible=False))

@property
def selected_columns(self):
Expand Down

0 comments on commit b0f2de5

Please sign in to comment.