diff options
| author | Nate Sesti <sestinj@gmail.com> | 2023-07-12 16:41:58 -0700 |
|---|---|---|
| committer | Nate Sesti <sestinj@gmail.com> | 2023-07-12 16:41:58 -0700 |
| commit | b3ab5bda368fcae690837f9ce8062dc7f17c6472 (patch) | |
| tree | c9dc387d06dc459fa10db0f4ea78eea835d8ca90 /extension/react-app | |
| parent | 772358dcbdc848f4f513a0af49114965948624d1 (diff) | |
| download | sncontinue-b3ab5bda368fcae690837f9ce8062dc7f17c6472.tar.gz sncontinue-b3ab5bda368fcae690837f9ce8062dc7f17c6472.tar.bz2 sncontinue-b3ab5bda368fcae690837f9ce8062dc7f17c6472.zip | |
getVisibleFiles
Diffstat (limited to 'extension/react-app')
| -rw-r--r-- | extension/react-app/src/components/StepContainer.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extension/react-app/src/components/StepContainer.tsx b/extension/react-app/src/components/StepContainer.tsx index d480c565..d1a8a46a 100644 --- a/extension/react-app/src/components/StepContainer.tsx +++ b/extension/react-app/src/components/StepContainer.tsx @@ -158,7 +158,7 @@ function StepContainer(props: StepContainerProps) { > <StepContainerDiv open={props.open}> <GradientBorder - loading={props.historyNode.active as boolean | false} + loading={props.historyNode.active as boolean || false} isFirst={props.isFirst} isLast={props.isLast} borderColor={ @@ -178,7 +178,7 @@ function StepContainer(props: StepContainerProps) { }} > <HeaderDiv - loading={props.historyNode.active as boolean | false} + loading={props.historyNode.active as boolean || false} error={props.historyNode.observation?.error ? true : false} > <div className="m-2"> |
