fix: Foreign Table Key to Label in Join Form

This commit is contained in:
ysandler 2020-07-31 16:34:10 -05:00 committed by Joshua Shoemaker
parent 4f7aa91763
commit b5be904c57

View File

@ -81,12 +81,12 @@ class CreateJoinNoduleForm extends Component {
{ this.renderJoinParams() } { this.renderJoinParams() }
</List> </List>
<Input label='Primary Table Key' placeholder='Key' ref={this.primaryTableKeyInput} style={{ width: '160px' }} /> <Input label='Primary Key' placeholder='Key' ref={this.primaryTableKeyInput} style={{ width: '100%' }} />
<Input label='Foreign Table Key' placeholder='Key' ref={this.foreignTableInput} style={{ width: '163px' }} /> <Input label='Foreign Table' placeholder='Label' ref={this.foreignTableInput} style={{ width: '100%' }} />
<Input label='Matching Key' placeholder='Key' ref={this.matchingKeyInput} style={{ width: '296px' }} /> <Input label='Foreign Key' placeholder='Key' ref={this.matchingKeyInput} style={{ width: '100%' }} />
<br /> <br />
<Button animated='vertical' onClick={this.addJoinParam} > <Button animated='vertical' onClick={this.addJoinParam}>
<Button.Content hidden><Icon name='add' /></Button.Content> <Button.Content hidden><Icon name='add' /></Button.Content>
<Button.Content visible>Add</Button.Content> <Button.Content visible>Add</Button.Content>
</Button> </Button>