Skip to content

Commit

Permalink
Task: escape path column in Users > Workspaces
Browse files Browse the repository at this point in the history
  • Loading branch information
kingjia90 committed Sep 19, 2022
1 parent e47272e commit 1e916e7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Expand Up @@ -34,6 +34,7 @@ pimcore.settings.user.workspace.asset = Class.create({
var typesColumns = [
{text: t("path"), width: 200, sortable: false, dataIndex: 'path',
editor: new Ext.form.TextField({}),
renderer: Ext.util.Format.htmlEncode,
tdCls: "pimcore_property_droptarget"
}
];
Expand Down
Expand Up @@ -35,7 +35,8 @@ pimcore.settings.user.workspace.document = Class.create({
var typesColumns = [
{text: t("path"), width: 200, sortable: false, dataIndex: 'path',
editor: new Ext.form.TextField({}),
tdCls: "pimcore_property_droptarget"
renderer: Ext.util.Format.htmlEncode,
tdCls: "pimcore_property_droptarget"
}
];

Expand Down
Expand Up @@ -36,6 +36,7 @@ pimcore.settings.user.workspace.object = Class.create({
var typesColumns = [
{text: t("path"), width: 200, sortable: false, dataIndex: 'path',
editor: new Ext.form.TextField({}),
renderer: Ext.util.Format.htmlEncode,
tdCls: "pimcore_property_droptarget"
}
];
Expand Down

0 comments on commit 1e916e7

Please sign in to comment.