Skip to content

Commit

Permalink
implementing UI for workspaces
Browse files Browse the repository at this point in the history
  • Loading branch information
sudhirverma committed Jun 12, 2020
1 parent afbb298 commit 741e4d5
Show file tree
Hide file tree
Showing 11 changed files with 883 additions and 82 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ out
coverage

preview
*.jsx
132 changes: 62 additions & 70 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions src/view/pipeline/app/start-pipeline/StartPipelineForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,16 @@

import * as React from 'react';
import { FormikValues } from 'formik';
import PipelineParameterSection from '../modals/PipelineParameterSection';
import PipelineParameterSection from '../parameter/PipelineParameterSection';
import PipelineResourceSection from '../resource/PipelineResourceSection';
import PipelineWorkspacesSection from '../workspaces/PiplelineWorkspacesSection';

const StartPipelineForm: React.FC<FormikValues> = ({ values }) => {
return (
<>
<PipelineParameterSection parameters={values.parameters} />
<PipelineResourceSection />
{/* <PipelineWorkspacesSection /> */}
<PipelineWorkspacesSection />
{/* <FormSection title="Advanced Options" fullWidth>
<PipelineSecretSection namespace={values.namespace} />
</FormSection> */}
Expand Down
Loading

0 comments on commit 741e4d5

Please sign in to comment.