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