Skip to content

Commit

Permalink
[Task]: Improve redirects. (#14562)
Browse files Browse the repository at this point in the history
undefined
  • Loading branch information
martineiber committed Mar 13, 2023
1 parent 271d215 commit 44c6b37
Showing 1 changed file with 6 additions and 1 deletion.
Expand Up @@ -286,7 +286,12 @@ pimcore.settings.redirects = Class.create({
flex: 150, sortable:true, dataIndex: "expiry",
editor: {
xtype: 'datefield',
format: 'Y-m-d'
format: 'Y-m-d',
onChange: function(value) {
if(Ext.String.hasHtmlCharacters(value)) {
this.reset();
}
},
},
renderer:
function(d) {
Expand Down

0 comments on commit 44c6b37

Please sign in to comment.