mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
1) Fix an issue where Deleting N number of rows makes first N number of rows disable. Fixes #3605
2) Ensure that on clicking Delete button should not delete rows immediately from the database server, it should be deleted when Save button will be clicked. Fixes #2392
This commit is contained in:
committed by
Akshay Joshi
parent
d728ee7436
commit
0b47d1dbf6
@@ -96,7 +96,7 @@ define(
|
||||
this.selection.setSelectedRows([]);
|
||||
}
|
||||
|
||||
if (isEditMode()) {
|
||||
if (isEditMode() && !_.isEmpty(stagedRows)) {
|
||||
enableButton('#btn-delete-row');
|
||||
}
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user