Merged in bugfix/PMCORE-2913 (pull request #7869)

PMCORE-2913

Approved-by: Julio Cesar Laura Avendaño
This commit is contained in:
Paula Quispe
2021-04-12 20:56:50 +00:00
committed by Julio Cesar Laura Avendaño

View File

@@ -637,11 +637,9 @@ emailServer.application = {
var txtPort = new Ext.form.NumberField({ var txtPort = new Ext.form.NumberField({
id: "txtPort", id: "txtPort",
name: "txtPort", name: "txtPort",
fieldLabel: _("PORT_DEFAULT"), //Port (default 25) fieldLabel: _("PORT_DEFAULT"), //Port (default 25)
anchor: "40%",
anchor: "36%", maxLength: 4,
maxLength: 3,
emptyText: null emptyText: null
}); });
@@ -655,11 +653,9 @@ emailServer.application = {
var txtIncomingPort = new Ext.form.NumberField({ var txtIncomingPort = new Ext.form.NumberField({
id: "txtIncomingPort", id: "txtIncomingPort",
name: "txtIncomingPort", name: "txtIncomingPort",
fieldLabel: _("INCOMING_PORT_DEFAULT"), //Port (default 993) fieldLabel: _("INCOMING_PORT_DEFAULT"), //Port (default 993)
anchor: "40%",
anchor: "36%", maxLength: 4,
maxLength: 3,
emptyText: null emptyText: null
}); });