Skip to content

Commit

Permalink
TODO
Browse files Browse the repository at this point in the history
  • Loading branch information
fhennig committed Jan 14, 2025
1 parent 1da8810 commit 61fd1d1
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ interface ColumnSelectorRowProps {
options: Map<string, string | null>;
selectedOption: string | null;
setColumnMapping: Dispatch<SetStateAction<ColumnMapping | null>>;
// TODO pass in already selected options, so they can be highlighted accordingly
}

export const ColumnSelectorRow: FC<ColumnSelectorRowProps> = ({
Expand All @@ -158,6 +159,8 @@ export const ColumnSelectorRow: FC<ColumnSelectorRowProps> = ({
selectedOption,
setColumnMapping,
}) => {
// TODO: sort options alphabetically, so they are at least somewhat sorted
// TODO: put important things at the top
return (
<tr key={selectingFor} className='border-gray-400 border-solid border-x-0 border-y'>
<td className='pr-4'>{selectingFor}</td>
Expand Down

0 comments on commit 61fd1d1

Please sign in to comment.