add htmlEncode to various fields
and the same for manager6 Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
3095fb1d08
commit
2eb0767b3c
@ -131,6 +131,7 @@ Ext.define('PVE.dc.AuthView', {
|
||||
header: gettext('Comment'),
|
||||
sortable: false,
|
||||
dataIndex: 'comment',
|
||||
renderer: Ext.String.htmlEncode,
|
||||
flex: 1
|
||||
}
|
||||
],
|
||||
|
@ -95,6 +95,7 @@ Ext.define('PVE.dc.GroupView', {
|
||||
{
|
||||
header: gettext('Comment'),
|
||||
sortable: false,
|
||||
renderer: Ext.String.htmlEncode,
|
||||
dataIndex: 'comment',
|
||||
flex: 1
|
||||
}
|
||||
|
@ -95,6 +95,7 @@ Ext.define('PVE.dc.PoolView', {
|
||||
{
|
||||
header: gettext('Comment'),
|
||||
sortable: false,
|
||||
renderer: Ext.String.htmlEncode,
|
||||
dataIndex: 'comment',
|
||||
flex: 1
|
||||
}
|
||||
|
@ -167,7 +167,7 @@ Ext.define('PVE.SecurityGroupList', {
|
||||
selModel: sm,
|
||||
columns: [
|
||||
{ header: gettext('Group'), dataIndex: 'group', width: 100 },
|
||||
{ header: gettext('Comment'), dataIndex: 'comment', flex: 1 }
|
||||
{ header: gettext('Comment'), dataIndex: 'comment', renderer: Ext.String.htmlEncode, flex: 1 }
|
||||
],
|
||||
listeners: {
|
||||
itemdblclick: run_editor,
|
||||
|
@ -219,6 +219,7 @@ Ext.define('PVE.dc.UserView', {
|
||||
{
|
||||
header: gettext('Comment'),
|
||||
sortable: false,
|
||||
renderer: Ext.String.htmlEncode,
|
||||
dataIndex: 'comment',
|
||||
flex: 1
|
||||
}
|
||||
|
@ -171,7 +171,7 @@ Ext.define('PVE.FirewallAliases', {
|
||||
columns: [
|
||||
{ header: gettext('Name'), dataIndex: 'name', width: 100 },
|
||||
{ header: gettext('IP/CIDR'), dataIndex: 'cidr', width: 100 },
|
||||
{ header: gettext('Comment'), dataIndex: 'comment', flex: 1 }
|
||||
{ header: gettext('Comment'), dataIndex: 'comment', renderer: Ext.String.htmlEncode, flex: 1 }
|
||||
],
|
||||
listeners: {
|
||||
itemdblclick: run_editor
|
||||
|
@ -108,6 +108,7 @@ Ext.define('PVE.ha.GroupsView', {
|
||||
{
|
||||
header: gettext('Comment'),
|
||||
flex: 1,
|
||||
renderer: Ext.String.htmlEncode,
|
||||
dataIndex: 'comment'
|
||||
}
|
||||
],
|
||||
|
@ -133,6 +133,7 @@ Ext.define('PVE.ha.ResourcesView', {
|
||||
{
|
||||
header: gettext('Description'),
|
||||
flex: 1,
|
||||
renderer: Ext.String.htmlEncode,
|
||||
dataIndex: 'comment'
|
||||
}
|
||||
],
|
||||
|
@ -148,7 +148,7 @@ Ext.define('PVE.IPSetList', {
|
||||
selModel: sm,
|
||||
columns: [
|
||||
{ header: 'IPSet', dataIndex: 'name', width: 100 },
|
||||
{ header: gettext('Comment'), dataIndex: 'comment', flex: 1 }
|
||||
{ header: gettext('Comment'), dataIndex: 'comment', renderer: Ext.String.htmlEncode, flex: 1 }
|
||||
],
|
||||
listeners: {
|
||||
itemdblclick: run_editor,
|
||||
|
@ -13,6 +13,7 @@ Ext.define('PVE.pool.StatusView', {
|
||||
var rows = {
|
||||
comment: {
|
||||
header: gettext('Comment'),
|
||||
renderer: Ext.String.htmlEncode,
|
||||
required: true
|
||||
}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user