File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -468,7 +468,7 @@ var flower = (function () {
468468 data : 'hostname' ,
469469 type : 'natural' ,
470470 render : function ( data , type , full , meta ) {
471- return '<a href="' + url_prefix ( ) + '/worker/' + data + '">' + data + '</a>' ;
471+ return '<a href="' + url_prefix ( ) + '/worker/' + encodeURIComponent ( data ) + '">' + data + '</a>' ;
472472 }
473473 } , {
474474 targets : 1 ,
@@ -559,7 +559,7 @@ var flower = (function () {
559559 visible : isColumnVisible ( 'uuid' ) ,
560560 orderable : false ,
561561 render : function ( data , type , full , meta ) {
562- return '<a href="' + url_prefix ( ) + '/task/' + data + '">' + data + '</a>' ;
562+ return '<a href="' + url_prefix ( ) + '/task/' + encodeURIComponent ( data ) + '">' + data + '</a>' ;
563563 }
564564 } , {
565565 targets : 2 ,
@@ -623,7 +623,7 @@ var flower = (function () {
623623 data : 'worker' ,
624624 visible : isColumnVisible ( 'worker' ) ,
625625 render : function ( data , type , full , meta ) {
626- return '<a href="' + url_prefix ( ) + '/worker/' + data + '">' + data + '</a>' ;
626+ return '<a href="' + url_prefix ( ) + '/worker/' + encodeURIComponent ( data ) + '">' + data + '</a>' ;
627627 }
628628 } , {
629629 targets : 10 ,
You can’t perform that action at this time.
0 commit comments