Skip to content

Commit 8240b12

Browse files
committed
fixing minor omissions/errors
1 parent 8f1b46d commit 8240b12

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

electron/app/locales/en/modeledit.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4102,7 +4102,7 @@
41024102
"a-MaxConsecutiveCharacters-help": "Specifies the maximum number of repeating consecutive characters that is allowed in the password. A value of 0 means no restriction. For example, with a value of 2, user can not create a password such as \"baaag\". Valid value for this attribute must be greater than or equal to 0.",
41034103

41044104
"a-MaxDynamicClusterSize-label": "Max Dynamic Cluster Size",
4105-
"f-CXluster_DynamicServers-a-MaxDynamicClusterSize-help": "Specifies the upper bound on the DynamicClusterSize that the Elasticity Framework is allowed to assign to DynamicClusterSize.",
4105+
"f-Cluster_DynamicServers-a-MaxDynamicClusterSize-help": "Specifies the upper bound on the DynamicClusterSize that the Elasticity Framework is allowed to assign to DynamicClusterSize. The default value is 8.",
41064106

41074107
"a-MaxEncryptBits-label": "Max Encrypt Bits",
41084108
"f-WTCServer_WTCLocalTuxDom-a-MaxEncryptBits-help": "The maximum encryption key length (in bits) this local Tuxedo access point uses when establishing a session connection. A value of 0 indicates no encryption is used.",

webui/src/js/utils/modelEdit/meta-options.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,15 @@ define(['knockout', 'utils/modelEdit/model-edit-helper'],
133133
return options;
134134
};
135135

136+
this.getServerTemplateOptions = () => {
137+
const options = [];
138+
const serverTemplateNames = getInstanceNames(['topology', 'ServerTemplate']);
139+
serverTemplateNames.forEach(serverTemplateName => {
140+
options.push({ value: serverTemplateName, label: serverTemplateName });
141+
});
142+
return options;
143+
};
144+
136145
this.getClusterOptions = () => {
137146
const options = [];
138147
const clusterNames = getInstanceNames(['topology', 'Cluster']);

webui/src/js/utils/modelEdit/metadata/Cluster.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -443,6 +443,10 @@
443443
},
444444
"ServerNameStartingIndex": {
445445
"validators": [ "range(0,2147480000)" ]
446+
},
447+
"ServerTemplate": {
448+
"editorType": "combo",
449+
"optionsMethod": "getServerTemplateOptions"
446450
}
447451
},
448452
"sections": [

0 commit comments

Comments
 (0)