Fixed following issues:

- Process watcher made fixed width with header changes, time details rounded to 2 decimals
 - Query history will show "No query history" if no query fired. Query editor default size increased.
 - Fixed a bug where New folder create button not working when in List mode and No files/folder present.
 - Other minor improvements.
This commit is contained in:
Aditya Toshniwal
2019-01-16 11:55:08 +05:30
committed by Akshay Joshi
parent 2a359d9d77
commit 7ac4e2a9d9
31 changed files with 168 additions and 100 deletions

View File

@@ -329,6 +329,17 @@ define('pgadmin.preferences', [
if (!d)
return true;
/* Bind events to enable clicking anywhere and not only text, button */
item.on('dblclick', function(e) {
e.preventDefault();
e.stopPropagation();
api.toggle(item);
});
item.on('click', function(e) {
e.preventDefault();
e.stopPropagation();
api.select(item);
});
// We will add the preferences in to the preferences data
// collection.
if (d.preferences && _.isArray(d.preferences)) {