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:
Satish V
2020-05-08 12:52:03 +05:30
committed by Akshay Joshi
parent d68e6bd892
commit 9338bdcb3a
3 changed files with 63 additions and 34 deletions

View File

@@ -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;
};
/**