Skip to content

Commit 1878074

Browse files
committed
correct type from String to string in applyFormatResultToCellNode
1 parent bef3203 commit 1878074

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

slick.grid.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1766,7 +1766,7 @@ if (typeof Slick === "undefined") {
17661766
}
17671767

17681768
function applyFormatResultToCellNode(formatterResult, cellNode, suppressRemove) {
1769-
if (typeof formatterResult === 'String') {
1769+
if (typeof formatterResult === 'string') {
17701770
cellNode.innerHTML = formatterResult;
17711771
return;
17721772
}

0 commit comments

Comments
 (0)