WebAdmin events page: fix rendering of some nullable strings
Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
This commit is contained in:
parent
2bd3b46e3f
commit
ba3e2ecb5f
1 changed files with 18 additions and 0 deletions
|
@ -537,6 +537,9 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
||||||
defaultContent: "",
|
defaultContent: "",
|
||||||
render: function(data, type, row) {
|
render: function(data, type, row) {
|
||||||
if (type === 'display') {
|
if (type === 'display') {
|
||||||
|
if (!data){
|
||||||
|
return "";
|
||||||
|
}
|
||||||
return escapeHTML(data);
|
return escapeHTML(data);
|
||||||
}
|
}
|
||||||
return data;
|
return data;
|
||||||
|
@ -546,6 +549,9 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
||||||
data: "protocol",
|
data: "protocol",
|
||||||
defaultContent: "",
|
defaultContent: "",
|
||||||
render: function(data, type, row) {
|
render: function(data, type, row) {
|
||||||
|
if (!data){
|
||||||
|
return "";
|
||||||
|
}
|
||||||
if (type === 'display') {
|
if (type === 'display') {
|
||||||
return escapeHTML(data);
|
return escapeHTML(data);
|
||||||
}
|
}
|
||||||
|
@ -557,6 +563,9 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
||||||
defaultContent: "",
|
defaultContent: "",
|
||||||
render: function(data, type, row) {
|
render: function(data, type, row) {
|
||||||
if (type === 'display') {
|
if (type === 'display') {
|
||||||
|
if (!data){
|
||||||
|
return "";
|
||||||
|
}
|
||||||
return escapeHTML(data);
|
return escapeHTML(data);
|
||||||
}
|
}
|
||||||
return data;
|
return data;
|
||||||
|
@ -763,6 +772,9 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
||||||
defaultContent: "",
|
defaultContent: "",
|
||||||
render: function(data, type, row) {
|
render: function(data, type, row) {
|
||||||
if (type === 'display') {
|
if (type === 'display') {
|
||||||
|
if (!data){
|
||||||
|
return "";
|
||||||
|
}
|
||||||
return escapeHTML(data);
|
return escapeHTML(data);
|
||||||
}
|
}
|
||||||
return data;
|
return data;
|
||||||
|
@ -773,6 +785,9 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
||||||
defaultContent: "",
|
defaultContent: "",
|
||||||
render: function(data, type, row) {
|
render: function(data, type, row) {
|
||||||
if (type === 'display') {
|
if (type === 'display') {
|
||||||
|
if (!data){
|
||||||
|
return "";
|
||||||
|
}
|
||||||
return escapeHTML(data);
|
return escapeHTML(data);
|
||||||
}
|
}
|
||||||
return data;
|
return data;
|
||||||
|
@ -919,6 +934,9 @@ explicit grant from the SFTPGo Team (support@sftpgo.com).
|
||||||
defaultContent: "",
|
defaultContent: "",
|
||||||
render: function(data, type, row) {
|
render: function(data, type, row) {
|
||||||
if (type === 'display') {
|
if (type === 'display') {
|
||||||
|
if (!data){
|
||||||
|
return "";
|
||||||
|
}
|
||||||
if (data){
|
if (data){
|
||||||
return escapeHTML(data);
|
return escapeHTML(data);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue