Skip to content

Commit

Permalink
work
Browse files Browse the repository at this point in the history
  • Loading branch information
ecrupper committed Jan 8, 2025
1 parent 55baef6 commit 66d5f4b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/elm/Pages/Org_/Repo_/Deployments/Add.elm
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ view shared route model =
, msg = TaskOnInput
, focusOutFunc = Nothing
}
, section []
, div []
[ div [ class "parameters-inputs", Util.testAttribute "parameters-list" ]
[ case model.config of
RemoteData.Success config ->
Expand All @@ -495,7 +495,7 @@ view shared route model =
]
[ strong [] [ text "Add Config Parameters" ]
]
, div [ class "parameters-inputs", Util.testAttribute "parameters-list" ]
, div [ class "config-parameters-inputs", Util.testAttribute "parameters-list" ]
(Dict.toList model.configParameters
|> List.concatMap
(\( key, value ) ->
Expand Down Expand Up @@ -622,12 +622,12 @@ viewDeploymentConfigTarget targets current msg =
(\target ->
Components.Form.viewRadio
{ value = current
, field = "target"
, field = target
, title = target
, subtitle = Nothing
, msg = msg target
, disabled_ = False
, id_ = "target"
, id_ = target
}
)
targets
Expand Down
11 changes: 11 additions & 0 deletions src/scss/_main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1787,3 +1787,14 @@ code.shell {
content: '$';
}
}

.testing-section {
background-color: red;
}

.config-parameters-inputs {
flex-direction: column;
align-items: flex-start;
margin-top: .2rem;
display: flex;
}

0 comments on commit 66d5f4b

Please sign in to comment.