Skip to content
This repository was archived by the owner on Feb 2, 2025. It is now read-only.

Commit 7d1a572

Browse files
committed
Correct ngTranslate support for newColumn #440
1 parent e1a0c3f commit 7d1a572

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/angular-datatables.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ function dtColumnBuilder() {
380380
}
381381
var column = Object.create(DTColumn);
382382
column.mData = mData;
383-
if (angular.isString(sTitle)) {
383+
if (angular.isDefined(sTitle)) {
384384
column.sTitle = sTitle;
385385
}
386386
return column;

0 commit comments

Comments
 (0)