Skip to content

Commit

Permalink
Fix column overlap on Multiple Properties page (grouparoo#3069)
Browse files Browse the repository at this point in the history
* Fix column overlap on Multiple Properties page

* Remove comments & `Source Column`
  • Loading branch information
evantahler authored Mar 2, 2022
1 parent 91eef59 commit a9ac50a
Showing 1 changed file with 4 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -192,28 +192,9 @@ const Page: NextPageWithInferredProps<typeof getServerSideProps> = ({
.sort()
.map((opt) => (
<Form.Group as={Col} key={`opt-${column}-${opt}`}>
<Form.Row>
<Col md={3}>
<code>
<Form.Label>{opt}: </Form.Label>
</code>
</Col>
<Col>
<strong>{options[opt].toString()}</strong>
{/* We actually don't want to allow changes to the provided source options? */}
{/* <Form.Control
size="sm"
type="text"
value={options[opt].toString()}
disabled={disabled}
onChange={(e) => {
const _options = makeLocal(options);
_options[opt] = e.target.value;
setOptions(_options);
}}
/> */}
</Col>
</Form.Row>
<strong>
<code>{options[opt].toString()}</code>
</strong>
</Form.Group>
))}
</Fragment>
Expand Down Expand Up @@ -374,7 +355,7 @@ const Page: NextPageWithInferredProps<typeof getServerSideProps> = ({
<Table>
<thead>
<tr>
<th>Source Options</th>
<th>Source Column</th>
<th>{""}</th>
<th>Key</th>
<th>Type</th>
Expand Down

0 comments on commit a9ac50a

Please sign in to comment.