mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Domain create dialog do not open and Font size issue in Security label control. Fixes #2616
This commit is contained in:
committed by
Akshay Joshi
parent
e506fa1dbe
commit
6717aff8f5
@@ -123,7 +123,7 @@ define('pgadmin.node.domain', [
|
|||||||
var isNew = (_.size(attrs) === 0);
|
var isNew = (_.size(attrs) === 0);
|
||||||
if (isNew) {
|
if (isNew) {
|
||||||
// Set Selected Schema
|
// Set Selected Schema
|
||||||
schema = args.node_info.schema.label
|
var schema = args.node_info.schema.label
|
||||||
this.set({'basensp': schema}, {silent: true});
|
this.set({'basensp': schema}, {silent: true});
|
||||||
|
|
||||||
// Set Current User
|
// Set Current User
|
||||||
|
|||||||
@@ -23,6 +23,7 @@ define('pgadmin.node.server', [
|
|||||||
},{
|
},{
|
||||||
id: 'label', label: gettext('Security Label'),
|
id: 'label', label: gettext('Security Label'),
|
||||||
type: 'text', editable: true,
|
type: 'text', editable: true,
|
||||||
|
cellHeaderClasses:'override_label_class_font_size'
|
||||||
}],
|
}],
|
||||||
validate: function() {
|
validate: function() {
|
||||||
var err = {},
|
var err = {},
|
||||||
|
|||||||
@@ -1335,3 +1335,8 @@ body {
|
|||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Security label's label column font size */
|
||||||
|
.override_label_class_font_size {
|
||||||
|
font-size: inherit !important;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user