Мелкая поправка

This commit is contained in:
Book Pauk
2022-11-13 00:11:26 +07:00
parent 891b1e4fe8
commit 4d3661b758

View File

@@ -185,7 +185,10 @@ class BookInfoDialog {
return utils.sqlDateFormat(value);
if (nodePath == 'fileInfo/del')
return (value ? 'Да' : '');
return (value ? 'Да' : null);
if (nodePath == 'fileInfo/insno')
return (value ? value : null);
if (nodePath == 'titleInfo/author')
return value.split(',').join(', ');