mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fix condition check for avoiding sorting of columns.
This commit is contained in:
parent
db7b8a8fa5
commit
fcc81d32cc
@ -42,7 +42,7 @@
|
||||
|
||||
// If object is of column type then do not sort
|
||||
if (options.hasOwnProperty("_type") && options._type &&
|
||||
(options._type != 'column' || options._type != 'catalog_object_column'))
|
||||
(options._type == 'column' || options._type == 'catalog_object_column'))
|
||||
return 0;
|
||||
|
||||
// first try and sort Hex codes or Dates
|
||||
|
Loading…
Reference in New Issue
Block a user