change text

This commit is contained in:
Jernej Pregelj 2019-05-09 13:34:17 +02:00
parent 8932ac2067
commit b4e7b6c204
3 changed files with 7 additions and 6 deletions

View File

@ -5,7 +5,7 @@
word-wrap: break-word;
> div {
display: block;
display: flex;
height: 100%;
padding: $spacer;
border: 1px solid $brand-grey-lighter;
@ -26,11 +26,12 @@
img {
width: 100px;
padding-right: $spacer;
float: left;
object-fit: contain;
align-self: flex-start;
}
> div {
display: inline;
flex: 1 1 auto;
}
}

View File

@ -50,13 +50,13 @@ class Publish extends Component<{}, PublishState> {
/>
<AreaButton
title={'Workflow'}
description={'A composite of data loading, transformation, machine learning scripts and other base assets in a directed acyclical graph.'}
description={'A directed composite of dataset, container, and script assets.'}
action={() => this.publishType('workflow')}
image={Workflow}
/>
<AreaButton
title={'Script'}
description={'A single programming script (for example, a python notebook or file) to accomplish tasks such as transforming data or training a machine learning model.'}
description={'A single programming script or notebook to execute a data science task.'}
action={() => this.publishType('script')}
image={Script}
/>

View File

@ -227,7 +227,7 @@ class Loader extends Component<LoaderProps, LoaderState> {
return (
<Route
title="Publish"
description="Publish a new data set into the Ocean Protocol Network."
description={`You are publishing a new ${this.props.loadType}.`}
>
{(!this.context.isLogged || !this.context.isNile) && (
<Web3message />