mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
FIX 7742 Decode the URI encoded attribute before displaying it as the value for the tree dropdown
This commit is contained in:
parent
9b15bac8f3
commit
34812971cc
@ -262,7 +262,7 @@
|
||||
onadd: function() {
|
||||
this._super();
|
||||
|
||||
var title = this.data('title');
|
||||
var title = decodeURIComponent(this.data('title'));
|
||||
this.find('.treedropdownfield-title').replaceWith(
|
||||
$('<input type="text" class="treedropdownfield-title search" />')
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user