Prevent Backgrid Password cells from losing focus if the browser opens an autocomplete list. Fixes #4278

This commit is contained in:
Murtuza Zabuawala 2019-05-20 13:34:47 +01:00 committed by Dave Page
parent da8da7bb49
commit 155768a2d7
2 changed files with 3 additions and 1 deletions

View File

@ -25,4 +25,5 @@ Bug fixes
| `Bug #4261 <https://redmine.postgresql.org/issues/4261>`_ - Stop using application/x-javascript as a mime type and use the RFC-compliant application/javascript instead.
| `Bug #4262 <https://redmine.postgresql.org/issues/4262>`_ - Fixed error on displaying table properties of a table partitioned by list having a default partition.
| `Bug #4269 <https://redmine.postgresql.org/issues/4269>`_ - Fix navigation of switch cells in grids.
| `Bug #4276 <https://redmine.postgresql.org/issues/4276>`_ - Relax the permission check on the directory containing the config database, as it may fail in some environments such as OpenShift.
| `Bug #4276 <https://redmine.postgresql.org/issues/4276>`_ - Relax the permission check on the directory containing the config database, as it may fail in some environments such as OpenShift.
| `Bug #4278 <https://redmine.postgresql.org/issues/4278>`_ - Prevent Backgrid Password cells from losing focus if the browser opens an autocomplete list.

View File

@ -1256,6 +1256,7 @@ define([
editor: Backgrid.InputCellEditor.extend({
attributes: {
type: 'password',
autocomplete: 'new-password',
},
render: function() {