mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where columns names should be visible in the order of their creation in the browser tree. Fixes #5043
This commit is contained in:
@@ -115,6 +115,15 @@ define([], function() {
|
||||
return 0;
|
||||
};
|
||||
|
||||
pgAdmin.numeric_comparator = function(a, b) {
|
||||
a = parseInt(a);
|
||||
b = parseInt(b);
|
||||
if (a < b)
|
||||
return -1 ;
|
||||
else
|
||||
return 1 ;
|
||||
};
|
||||
|
||||
/**
|
||||
* Decimal adjustment of a number.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user