mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-14 17:26:22 +01:00
fix bug in renderUrl method
This commit is contained in:
@@ -126,7 +126,11 @@ Sonia.rest.Grid = Ext.extend(Ext.grid.GridPanel, {
|
||||
},
|
||||
|
||||
renderUrl: function(url){
|
||||
return String.format( this.urlTemplate, url );
|
||||
var result = '';
|
||||
if ( url != null ){
|
||||
result = String.format( this.urlTemplate, url );
|
||||
}
|
||||
return result;
|
||||
},
|
||||
|
||||
renderMailto: function(mail){
|
||||
|
||||
Reference in New Issue
Block a user