Skip to content

Commit

Permalink
Merge pull request #135 from rashidkpc/master
Browse files Browse the repository at this point in the history
Fixes #123
  • Loading branch information
Rashid Khan committed May 29, 2013
2 parents a531c79 + 916ed28 commit 21f348c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion panels/table/module.js
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ angular.module('kibana.table', [])
})
.filter('highlight', function() {
return function(text) {
if (text.toString().length) {
if (text.toString().length > 0 && !_.isUndefined(text) && !_.isNull(text)) {
return text.toString().
replace(/&/g, '&').
replace(/</g, '&lt;').
Expand Down

0 comments on commit 21f348c

Please sign in to comment.