diff --git a/www/Utils.js b/www/Utils.js index 9a746a44..cff59a7a 100644 --- a/www/Utils.js +++ b/www/Utils.js @@ -681,4 +681,9 @@ Ext.define('PBS.Utils', { return `${modeText} ${extra}`; }, + render_optional_namespace: function(value, metadata, record) { + if (!value) return '-'; // FIXME ?? + return Ext.String.htmlEncode(value); + }, + });