diff --git a/frontend/src/js/model/table.ts b/frontend/src/js/model/table.ts index 8c380f597d..ac6393648d 100644 --- a/frontend/src/js/model/table.ts +++ b/frontend/src/js/model/table.ts @@ -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, ); }