Skip to content

Commit a82094b

Browse files
committed
fix: move assume role arn input field at the last
1 parent c81f7d0 commit a82094b

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

packages/graph-explorer/src/modules/CreateConnection/CreateConnection.tsx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -324,6 +324,17 @@ const CreateConnection = ({
324324
}
325325
/>
326326
</div>
327+
<div className="input-url">
328+
<Select
329+
label="Service Type"
330+
options={[
331+
{ label: "Neptune DB", value: "neptune-db" },
332+
{ label: "Neptune Analytics", value: "neptune-graph" },
333+
]}
334+
value={form.serviceType}
335+
onChange={onFormChange("serviceType")}
336+
/>
337+
</div>
327338
<div className="input-url">
328339
<Input
329340
data-autofocus={true}
@@ -346,17 +357,6 @@ const CreateConnection = ({
346357
errorMessage="Invalid ARN"
347358
/>
348359
</div>
349-
<div className="input-url">
350-
<Select
351-
label="Service Type"
352-
options={[
353-
{ label: "Neptune DB", value: "neptune-db" },
354-
{ label: "Neptune Analytics", value: "neptune-graph" },
355-
]}
356-
value={form.serviceType}
357-
onChange={onFormChange("serviceType")}
358-
/>
359-
</div>
360360
</>
361361
)}
362362
</div>

0 commit comments

Comments
 (0)