Switch order of cell name and target dashboard in send to dashboard

pull/4594/head
Alirie Gray 2018-10-15 12:52:07 -07:00
parent 9771cad58b
commit 974e771dcb
1 changed files with 7 additions and 7 deletions

View File

@ -106,13 +106,6 @@ class SendToDashboardOverlay extends PureComponent<Props, State> {
<OverlayHeading title="Send to Dashboard" onDismiss={onCancel} />
<OverlayBody>
<Form>
<Form.Element label="Cell Name">
<Input
value={name}
onChange={this.handleChangeName}
placeholder={'Name this new cell'}
/>
</Form.Element>
<Form.Element label="Target Dashboard(s)">
<MultiSelectDropdown
onChange={this.handleSelect}
@ -122,6 +115,13 @@ class SendToDashboardOverlay extends PureComponent<Props, State> {
{this.dropdownItems}
</MultiSelectDropdown>
</Form.Element>
<Form.Element label="Cell Name">
<Input
value={name}
onChange={this.handleChangeName}
placeholder={'Name this new cell'}
/>
</Form.Element>
<Form.Footer>
<Button
color={ComponentColor.Success}