log fields and logo fixes

This commit is contained in:
Rami Winestock
2023-12-15 17:57:31 +02:00
parent f90f5edcd1
commit 3ae059ef42
8 changed files with 97 additions and 65 deletions

View File

@@ -27,6 +27,14 @@ module.exports = Mn.View.extend({
}
return '#' + (this.object_id || '?');
},
createSpecificTableCell: function(value) {
if (value && value.trim() !== '') {
return `<td>${value}</td>`;
} else {
return `<td class="text-center">-</td>`;
}
}
}
});