From 0ed3cd248beab20b421297c107a7d1e9dba21925 Mon Sep 17 00:00:00 2001 From: Nagesh Dhope Date: Fri, 6 Mar 2020 17:59:57 +0530 Subject: [PATCH] Set Active query details subnode control as read-only instead of disabled for accessibility. --- web/pgadmin/dashboard/static/js/dashboard.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/web/pgadmin/dashboard/static/js/dashboard.js b/web/pgadmin/dashboard/static/js/dashboard.js index 64b770b57..61e71f076 100644 --- a/web/pgadmin/dashboard/static/js/dashboard.js +++ b/web/pgadmin/dashboard/static/js/dashboard.js @@ -167,7 +167,7 @@ define('pgadmin.dashboard', [ label: gettext('Backend type'), type: 'text', editable: true, - disabled: true, + readonly: true, group: gettext('Details'), visible: function() { return this.version >= 100000; @@ -177,21 +177,21 @@ define('pgadmin.dashboard', [ label: gettext('Query started at'), type: 'text', editable: false, - disabled: true, + readonly: true, group: gettext('Details'), }, { id: 'state_change', label: gettext('Last state changed at'), type: 'text', editable: true, - disabled: true, + readonly: true, group: gettext('Details'), }, { id: 'query', label: gettext('SQL'), type: 'text', editable: true, - disabled: true, + readonly: true, control: Backform.SqlFieldControl, group: gettext('Details'), }],