Skip to content

Commit

Permalink
Addressed changes such as adding extra break lines and changing the f…
Browse files Browse the repository at this point in the history
…ormat of the export box
  • Loading branch information
Salonee committed Nov 15, 2022
1 parent 1cf46d9 commit 0a33fde
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions packages/pipeline-editor/src/PipelineExportDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,6 @@ export const PipelineExportDialog: React.FC<IProps> = ({
}) => {
return (
<form className="elyra-dialog-form">
<label htmlFor="export_name">Export Name:</label>
<br />
<input
type="text"
id="export_name"
name="export_name"
defaultValue={exportName}
data-form-required
/>
<RuntimeConfigSelect
runtimeData={runtimeData}
pipelineType={pipelineType}
Expand All @@ -78,6 +69,17 @@ export const PipelineExportDialog: React.FC<IProps> = ({
return <FileTypeSelect fileTypes={info?.export_file_types ?? []} />;
}}
</RuntimeConfigSelect>
<label htmlFor="export_name">Export Filename:</label>
<br />
<input
type="text"
id="export_name"
name="export_name"
defaultValue={exportName}
data-form-required
/>
<br />
<br />
<input
type="checkbox"
className="elyra-Dialog-checkbox"
Expand Down

0 comments on commit 0a33fde

Please sign in to comment.