Label for UploadDataButton, new pos for PrepUpload window

This commit is contained in:
farbrorberg
2018-07-02 15:07:35 -04:00
committed by Matthias Berg
parent 231d0a4077
commit 3a69541a2d
2 changed files with 2 additions and 2 deletions

View File

@@ -142,7 +142,7 @@ class PrepareUploadedData extends Component {
<Window type="small"
title="Prepare Data"
size={windowSize}
position={{ x: 100, y: -100 }}
position={{ x: 300, y: 300 }}
closeCallback={() => this.setState({ activated: false })}>
<div className={styles.content}>
<CenteredLabel>{getDirectoryLeaf(this.props.filePaths)}</CenteredLabel>

View File

@@ -41,7 +41,7 @@ class UploadDataButton extends Component {
return(
<div>
<Button onClick={() => this.handleClick()}>
Upload Data
<Label>Upload Data</Label>
</Button>
</div>
);