1
0
Fork 0

change loading steps phrasing

This commit is contained in:
Sean Sube 2023-02-12 13:32:40 -06:00
parent 034be3266e
commit 62fec58f78
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
2 changed files with 5 additions and 5 deletions

View File

@ -5,14 +5,14 @@ formatters:
handlers:
console:
class: logging.StreamHandler
level: DEBUG
level: INFO
formatter: simple
stream: ext://sys.stdout
loggers:
'':
level: DEBUG
level: INFO
handlers: [console]
propagate: True
root:
level: DEBUG
handlers: [console]
level: INFO
handlers: [console]

View File

@ -110,7 +110,7 @@ export function LoadingCard(props: LoadingCardProps) {
sx={{ alignItems: 'center' }}
>
{renderProgress()}
<Typography>{getProgress()}/{getTotal()} steps</Typography>
<Typography>{getProgress()} of {getTotal()} steps</Typography>
<Button onClick={() => cancel.mutate()}>Cancel</Button>
</Stack>
</Box>