Fixed an issue wherein grant wizard the last object is not selectable. Fixes #4545

This commit is contained in:
Pradip Parkale
2020-04-21 13:09:15 +05:30
committed by Akshay Joshi
parent b0b60da84a
commit 3d516101a4
4 changed files with 5 additions and 3 deletions
@@ -500,6 +500,7 @@ define([
coll.sort();
this.dbObjectFilter = this.DbObjectFilter(coll);
coll.fullCollection = this.dbObjectFilter.shadowCollection;
/**
privArray holds objects selected which further helps
@@ -513,7 +514,6 @@ define([
*/
coll.on('backgrid:selected', function(model, selected) {
model.set('selected', selected);
var object_type = model.get('object_type');
switch (object_type) {
case 'Function':
@@ -12,7 +12,7 @@
}
.db_objects_grid {
height: 100%;
height: calc(100% - 15px);
}
.db_objects_filter {
@@ -49,7 +49,7 @@
overflow: auto;
width: 100%;
/* 100% minus thead height */
height: calc(100% - 28px);
height: calc(100% - 40px);
}
.object_type_table tbody tr {