Skip to content

Commit

Permalink
feat: starlark -> plan (#2338)
Browse files Browse the repository at this point in the history
## Description
Renames mentions of Starlark to Plan so first time users unaware of
Starlark don't need to understand it to perform flows such as enclave
building and running packages for the first time.

## Is this change user facing?
YES
  • Loading branch information
tedim52 authored Mar 27, 2024
1 parent 7945b11 commit 5fab14a
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 5fab14a

Please sign in to comment.