1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00

change label 'data set' with 'dataset'

This commit is contained in:
EnzoVezzaro 2022-08-15 09:57:53 -04:00
parent 4d119467a4
commit f5514bbc1d
18 changed files with 38 additions and 38 deletions

View File

@ -1,6 +1,6 @@
{ {
"asset": { "asset": {
"title": "Data Set In Purgatory", "title": "Dataset In Purgatory",
"description": "Except for removing liquidity, no further actions are permitted on this dataset and it will not be returned in any search. For more details go to [list-purgatory](https://github.com/oceanprotocol/list-purgatory)." "description": "Except for removing liquidity, no further actions are permitted on this dataset and it will not be returned in any search. For more details go to [list-purgatory](https://github.com/oceanprotocol/list-purgatory)."
}, },
"account": { "account": {

View File

@ -13,7 +13,7 @@ import { useMarketMetadata } from '@context/MarketMetadata'
const columns: TableOceanColumn<AssetExtended>[] = [ const columns: TableOceanColumn<AssetExtended>[] = [
{ {
name: 'Data Set', name: 'Dataset',
selector: (row) => { selector: (row) => {
const { metadata } = row const { metadata } = row
return <AssetTitle title={metadata.name} asset={row} /> return <AssetTitle title={metadata.name} asset={row} />

View File

@ -21,7 +21,7 @@ export function Status({ children }: { children: string }): ReactElement {
const columns: TableOceanColumn<ComputeJobMetaData>[] = [ const columns: TableOceanColumn<ComputeJobMetaData>[] = [
{ {
name: 'Data Set', name: 'Dataset',
selector: (row) => ( selector: (row) => (
<AssetListTitle did={row.inputDID[0]} title={row.assetName} /> <AssetListTitle did={row.inputDID[0]} title={row.assetName} />
) )

View File

@ -8,7 +8,7 @@ import { useUserPreferences } from '@context/UserPreferences'
const columns: TableOceanColumn<DownloadedAsset>[] = [ const columns: TableOceanColumn<DownloadedAsset>[] = [
{ {
name: 'Data Set', name: 'Dataset',
selector: (row) => <AssetTitle asset={row.asset} /> selector: (row) => <AssetTitle asset={row.asset} />
}, },
{ {