mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
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:
committed by
Akshay Joshi
parent
2a359d9d77
commit
7ac4e2a9d9
@@ -2112,11 +2112,16 @@ define([
|
||||
tagName: 'div',
|
||||
className: 'inline-tab-panel',
|
||||
tabPanelClassName: 'inline-tab-panel',
|
||||
tabPanelExtraClasses: '',
|
||||
initialize: function(opts) {
|
||||
Backform.FieldsetControl.prototype.initialize.apply(
|
||||
this, arguments
|
||||
);
|
||||
this.tabIndex = (opts.tabIndex || parseInt(Math.random() * 1000)) + 1;
|
||||
if(opts.field.get('tabPanelExtraClasses')) {
|
||||
this.tabPanelExtraClasses = opts.field.get('tabPanelExtraClasses');
|
||||
}
|
||||
this.tabPanelClassName = this.tabPanelClassName + ' ' + this.tabPanelExtraClasses;
|
||||
},
|
||||
// Render using Backform.Dialog (tabular UI) (only if this control is
|
||||
// visible).
|
||||
|
||||
Reference in New Issue
Block a user