Skip to content

Commit

Permalink
Merge branch 'bug_23535/on_the_nodes_list_the_filter_does_not_work_on…
Browse files Browse the repository at this point in the history
…_property_based_column_pr' into branches/rudder/7.3
  • Loading branch information
Jenkins CI committed Oct 23, 2023
2 parents 0e42d42 + 24a8025 commit 4fa57e9
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1188,7 +1188,7 @@ var allColumns = {
return JSON.stringify(row.properties[value]);
}
// 'sort', 'type' and undefined all just use the integer
return value;
return JSON.stringify(row.properties[value]);
}

, "title": title
Expand Down Expand Up @@ -1321,7 +1321,6 @@ function reloadTable(gridId) {
}

function createNodeTable(gridId, refresh) {

var cacheId = gridId + "_columns"
var cacheColumns = localStorage.getItem(cacheId)
if (cacheColumns !== null) {
Expand Down

0 comments on commit 4fa57e9

Please sign in to comment.