We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cc83ed commit 0f2eab3Copy full SHA for 0f2eab3
flower/static/js/flower.js
@@ -800,7 +800,20 @@ var flower = (function () {
800
}, {
801
targets: 4,
802
data: 'kwargs',
803
- visible: isColumnVisible('kwargs')
+ visible: isColumnVisible('kwargs'),
804
+ render: function (data) {
805
+ var entityMap = {
806
+ '&': '&',
807
+ '<': '<',
808
+ '>': '>',
809
+ '"': '"',
810
+ '\'': ''',
811
+ '/': '/'
812
+ };
813
+ return data.replace(/[&<>"'\/]/g, function (s) {
814
+ return entityMap[s];
815
+ });
816
+ }
817
818
targets: 5,
819
data: 'result',
0 commit comments