mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Ensure that cell content being autoselected when editing the cell data. Fixes #5810
This commit is contained in:
committed by
Akshay Joshi
parent
9317fe21b2
commit
778e0cd402
@@ -214,6 +214,7 @@ import gettext from 'sources/gettext';
|
||||
if (!args.column.is_array) {
|
||||
if (item[args.column.field] === '') {
|
||||
$input.val(defaultValue = '\'\'');
|
||||
$input.trigger('select');
|
||||
} else if (item[args.column.field] === '\'\'') {
|
||||
$input.val(defaultValue = '\\\'\\\'');
|
||||
} else if (item[args.column.field] === '""') {
|
||||
|
||||
Reference in New Issue
Block a user