Comparing version 11.1.2 to 11.1.3
{ | ||
"name": "ka-table", | ||
"version": "11.1.2", | ||
"version": "11.1.3", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "repository": "github:komarovalexander/ka-table", |
@@ -112,3 +112,4 @@ "use strict"; | ||
var getGroupText = function (value, column, format, groupItems) { | ||
return format ? format({ column: column, value: value, rowData: groupItems === null || groupItems === void 0 ? void 0 : groupItems[0] }) : "".concat((column && column.title ? column.title + ': ' : '')).concat(value); | ||
var formattedValue = format && format({ column: column, value: value, rowData: groupItems === null || groupItems === void 0 ? void 0 : groupItems[0] }); | ||
return formattedValue != null ? formattedValue : "".concat((column && column.title ? column.title + ': ' : '')).concat(value); | ||
}; | ||
@@ -115,0 +116,0 @@ exports.getGroupText = getGroupText; |
396867
8128