mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2026-08-10 04:58:03 -05:00
Fixed an issue wherein grant wizard the last object is not selectable. Fixes #4545
This commit is contained in:
committed by
Akshay Joshi
parent
b0b60da84a
commit
3d516101a4
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user