Skip to content

Commit

Permalink
Merge pull request #3631 from ingef/fix/check-connectorId
Browse files Browse the repository at this point in the history
check against connectorId instead of table id
  • Loading branch information
thoniTUB authored Dec 4, 2024
2 parents 7ddc6cf + 04ebe47 commit 6e7652f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/js/model/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export function tableIsIncludedInIds(
tableIds: string[],
) {
return tableIds.some(
(id) => table.id.toLowerCase().indexOf(id.toLowerCase()) !== -1,
(id) => table.connectorId.toLowerCase().indexOf(id.toLowerCase()) !== -1,
);
}

Expand Down

0 comments on commit 6e7652f

Please sign in to comment.