Skip to content

Commit

Permalink
choosing string primary key from table
Browse files Browse the repository at this point in the history
Ref: #1951
  • Loading branch information
wellingguzman committed Nov 17, 2017
1 parent 42452e1 commit 2488d23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/core/table/table.view.js
Expand Up @@ -68,7 +68,7 @@ function(app, _, Backbone, Notification, __t, TableHelpers, ModelHelper, TableHe
var selection = [];

this.$('td .js-select-row:checked').each(function () {
selection.push(parseInt(this.value, 10));
selection.push(this.value);
});

return selection;
Expand Down

0 comments on commit 2488d23

Please sign in to comment.