Skip to content

Commit cc935f5

Browse files
committed
Update close button in Dialog.elm
Signed-off-by: eth2353 <[email protected]>
1 parent dfd161e commit cc935f5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ui/app/src/Views/Shared/Dialog.elm

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@ view maybeConfig =
3030
[ div [ class "modal-header" ]
3131
[ h5 [ class "modal-title" ] [ text title ]
3232
, button
33-
[ class "close"
33+
[ class "btn-close"
3434
, onClick onClose
35+
, Html.Attributes.attribute "aria-label" "Close"
3536
]
36-
[ text "×" ]
37+
[]
3738
]
3839
, div [ class "modal-body" ] [ body ]
3940
, div [ class "modal-footer" ] [ footer ]

0 commit comments

Comments
 (0)