Skip to content

Commit

Permalink
Fix wrongly inverted boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
pavsaund committed Sep 8, 2023
1 parent d50c639 commit 998ea41
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export const TableSection = ({ selectedTableName, initialSelectedFields, onBackT
onSelectedIdsChanged={setSelectedRowIds}
onFieldMapped={updateMappedFieldsAndUpdateFormValue}
quickFilterValue={fieldSearchTerm}
showOnlySelected={!hideUnselectedRows}
showOnlySelected={hideUnselectedRows}
/>
</>
)}
Expand Down

0 comments on commit 998ea41

Please sign in to comment.