mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where the newly added table is not alphabetically added to the tree. Fixes #5434
Fixed an issue when renaming the column not added in the proper order. Fixes #5450
This commit is contained in:
@@ -119,9 +119,11 @@ define([], function() {
|
||||
a = parseInt(a);
|
||||
b = parseInt(b);
|
||||
if (a < b)
|
||||
return -1 ;
|
||||
return -1;
|
||||
else if (a == b)
|
||||
return 0;
|
||||
else
|
||||
return 1 ;
|
||||
return 1;
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user