Add double quotes to column name in filters

This commit is contained in:
Dan Sosedoff 2016-01-31 20:12:56 -06:00
parent d3d408bc68
commit ccd5455103
2 changed files with 3 additions and 3 deletions

File diff suppressed because one or more lines are too long

View File

@ -397,7 +397,7 @@ function showTableContent(sortColumn, sortOrder) {
// Apply filtering only if column is selected
if (filter.column && filter.op) {
var where = [
filter.column,
'"' + filter.column + '"',
filterOptions[filter.op].replace("DATA", filter.input)
].join(" ");