mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where the user can not paste the updated table header in safari 12 and 13 browsers. Fixes #4815
This commit is contained in:
committed by
Akshay Joshi
parent
b764046587
commit
22f20a38ec
@@ -515,10 +515,10 @@ define('pgadmin.dashboard', [
|
||||
|
||||
if(that.data.length > 50) {
|
||||
// Listen scroll event to load more rows
|
||||
$('.pg-panel-content').on('scroll', that.__loadMoreRows.bind(that));
|
||||
$('.wcScrollableY').on('scroll', that.__loadMoreRows.bind(that));
|
||||
} else {
|
||||
// Listen scroll event to load more rows
|
||||
$('.pg-panel-content').off('scroll', that.__loadMoreRows);
|
||||
$('.wcScrollableY').off('scroll', that.__loadMoreRows);
|
||||
}
|
||||
|
||||
// Re-apply search criteria
|
||||
|
||||
Reference in New Issue
Block a user