mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-15 01:34:57 +01:00
Merge branch 'feature/history-compute' of https://github.com/oceanprotocol/market into feature/history-compute
This commit is contained in:
commit
5e38ae572b
@ -128,17 +128,20 @@ export default function Compute({
|
||||
<Dropzone multiple={false} handleOnDrop={onDrop} />
|
||||
|
||||
<div className={styles.actions}>
|
||||
<Button
|
||||
style="primary"
|
||||
onClick={() => startJob()}
|
||||
disabled={isComputeButtonDisabled}
|
||||
>
|
||||
{hasDatatoken ? 'Start job' : 'Buy'}
|
||||
</Button>
|
||||
{isLoading ? (
|
||||
<Loader message={computeStepText} />
|
||||
) : (
|
||||
<Button
|
||||
style="primary"
|
||||
onClick={() => startJob()}
|
||||
disabled={isComputeButtonDisabled}
|
||||
>
|
||||
{hasDatatoken ? 'Start job' : 'Buy'}
|
||||
</Button>
|
||||
)}
|
||||
</div>
|
||||
|
||||
<footer className={styles.feedback}>
|
||||
{isLoading && <Loader message={computeStepText} />}
|
||||
{computeError !== undefined && (
|
||||
<Alert text={computeError} state="error" />
|
||||
)}
|
||||
|
@ -97,8 +97,8 @@ export default function PoolTransactions(): ReactElement {
|
||||
data={logs}
|
||||
className={styles.table}
|
||||
noHeader
|
||||
pagination={logs?.length >= 19}
|
||||
paginationPerPage={20}
|
||||
pagination={logs?.length >= 9}
|
||||
paginationPerPage={10}
|
||||
noDataComponent={<Empty />}
|
||||
/>
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user