Add spinner to execution controls
This commit is contained in:
parent
032f9a6792
commit
bf2562ab2f
@ -3,6 +3,7 @@ import {
|
|||||||
ButtonGroup,
|
ButtonGroup,
|
||||||
Icon,
|
Icon,
|
||||||
NumericInput,
|
NumericInput,
|
||||||
|
Spinner,
|
||||||
Tag,
|
Tag,
|
||||||
} from "@blueprintjs/core";
|
} from "@blueprintjs/core";
|
||||||
|
|
||||||
@ -121,6 +122,9 @@ type Props = {
|
|||||||
export const ExecutionControls = (props: Props) => {
|
export const ExecutionControls = (props: Props) => {
|
||||||
return (
|
return (
|
||||||
<div style={styles.container}>
|
<div style={styles.container}>
|
||||||
|
<div style={{ width: 20, marginRight: 15 }}>
|
||||||
|
{props.state === "running" && <Spinner size={20} />}
|
||||||
|
</div>
|
||||||
{props.state === "off" ? (
|
{props.state === "off" ? (
|
||||||
<RunButton onClick={props.onRun} />
|
<RunButton onClick={props.onRun} />
|
||||||
) : (
|
) : (
|
||||||
|
Loading…
x
Reference in New Issue
Block a user