Skip to content

Commit

Permalink
Fixes a regression with how aggConfig's schema name is structured.
Browse files Browse the repository at this point in the history
  • Loading branch information
walterra committed Dec 27, 2018
1 parent cb4e9c2 commit 70e86aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/response_handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ function timeFormat(timestamp) {

function getColumnIdBySchemaName(columns, schemaName) {
const column = columns.find((c) => {
return c.aggConfig.__schema.name === schemaName;
return c.aggConfig.__schema === schemaName;
});
return column && column.id || undefined;
}
Expand Down

0 comments on commit 70e86aa

Please sign in to comment.