Unscripted fixes (#601)

This commit is contained in:
Hitesh Aringa 2023-09-21 19:19:39 +00:00 committed by Harness
parent 90a482186c
commit f866dc3ab1
3 changed files with 3 additions and 2 deletions

View File

@ -812,7 +812,7 @@ exportSpace:
newProject: New Project Details newProject: New Project Details
upgradeConfirmation: Upgrade Confirmation upgradeConfirmation: Upgrade Confirmation
upgradeTitle: Upgrade this project to the Harness Software Delivery platform upgradeTitle: Upgrade this project to the Harness Software Delivery platform
upgrade: Upgrade upgrade: Upgrade (Coming Soon)
upgradeContent: Upgrade this project to Harness. By upgrading to Harness, you will create a new project in your Harness account and migrate all repositories to the new project. Learn more about Harness. upgradeContent: Upgrade this project to Harness. By upgrading to Harness, you will create a new project in your Harness account and migrate all repositories to the new project. Learn more about Harness.
upgradeProgress: 'Upgrading in progress' upgradeProgress: 'Upgrading in progress'
exportCompleted: Upgrade Completed exportCompleted: Upgrade Completed

View File

@ -41,7 +41,7 @@ const StarterPipelineV1: Record<string, unknown> = {
type: 'run', type: 'run',
spec: { spec: {
container: 'alpine', container: 'alpine',
run: 'echo "hello world"' script: 'echo "hello world"'
} }
} }
] ]

View File

@ -275,6 +275,7 @@ export default function SpaceSettings() {
<Button <Button
className={css.button} className={css.button}
variation={ButtonVariation.PRIMARY} variation={ButtonVariation.PRIMARY}
disabled
onClick={() => { onClick={() => {
openModal() openModal()
}} }}