Skip to content

Commit

Permalink
starlark -> plan
Browse files Browse the repository at this point in the history
  • Loading branch information
tedim52 committed Mar 27, 2024
1 parent 7945b11 commit 6a1fbe7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ type StartosisRunner struct {
const (
defaultCurrentStepNumber = 0
defaultTotalStepsNumber = 0
startingInterpretationMsg = "Interpreting Starlark code - execution will begin shortly"
startingInterpretationMsg = "Interpreting plan - execution will begin shortly"
startingValidationMsg = "Starting validation"
startingExecutionMsg = "Starting execution"
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const ViewStarlarkModal = ({ isOpen, onClose, starlark }: ViewStarlarkMod
<Modal closeOnOverlayClick={true} isOpen={isOpen} onClose={onClose} isCentered>
<ModalOverlay />
<ModalContent minW={"800px"} maxH={"90vh"}>
<ModalHeader>Previewing Starlark</ModalHeader>
<ModalHeader>Previewing Plan</ModalHeader>
<ModalCloseButton />
<ModalBody minH={"70vh"} flex={"1 1 auto"} overflowY={"auto"}>
{isDefined(starlark) && <FileDisplay value={starlark} title={"main.star"} filename={`main.star`} />}
Expand Down

0 comments on commit 6a1fbe7

Please sign in to comment.