mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
change text
This commit is contained in:
parent
8932ac2067
commit
b4e7b6c204
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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}
|
||||
/>
|
||||
|
@ -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 />
|
||||
|
Loading…
Reference in New Issue
Block a user