Skip to content

Commit

Permalink
filter out no canMirror
Browse files Browse the repository at this point in the history
  • Loading branch information
Amogh-Bharadwaj committed Feb 28, 2024
1 parent 481dbe9 commit 4bf49a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/app/mirrors/create/handlers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export const reformattedTableMapping = (
tableMapping: TableMapRow[]
): TableMapping[] => {
const mapping = tableMapping
.filter((row) => row?.selected === true)
.filter((row) => row?.selected === true && row?.canMirror === true)
.map((row) => ({
sourceTableIdentifier: row.source,
destinationTableIdentifier: row.destination,
Expand Down

0 comments on commit 4bf49a4

Please sign in to comment.