Skip to content

Commit

Permalink
fix: fixed dropdown for auth params
Browse files Browse the repository at this point in the history
  • Loading branch information
TangoBeeAkto committed Dec 24, 2024
1 parent fba5ee3 commit bd8e0b5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ function AuthParams({ authParams, setAuthParams, hideTitle }) {
<div style={{ display: "grid", gridTemplateColumns: "auto max-content auto max-content auto max-content", gap: "30px", alignItems: "center"}}>
<Dropdown
id={"auth-param-menu"}
menuItems={authParamOptions} initial={authParam.where === "HEADER" ? "Header": "Body"}
menuItems={authParamOptions} initial={authParam.where}
selected={(authParamLocation) => handleUpdate(index, "where", authParamLocation)} />
<Text variant="bodyMd">Key: </Text>
<TextField id={`auth-param-key-${index}`} value={authParam.key} onChange={(key) => handleUpdate(index, "key", key)} />
Expand Down

0 comments on commit bd8e0b5

Please sign in to comment.