Skip to content

Commit

Permalink
fixup! fixup! fixup! Fixes #23243: Hash API tokens - plugin
Browse files Browse the repository at this point in the history
Fixes #23243: Hash API tokens - plugin
  • Loading branch information
amousset committed Aug 16, 2023
1 parent 194484e commit 8e28d6a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api-authorizations/src/main/elm/sources/UserApiToken.elm
Original file line number Diff line number Diff line change
Expand Up @@ -303,14 +303,14 @@ tokenPresent token isNewToken =
, b [ class ("text-capitalize " ++ statusClass) ] [ text statusTxt ]
]
]
, li [ class "footer" ] [ a [ class "deleteToken", onClick DeleteButton ] [ text "Delete API Token" ] ]
, li [ class "footer" ] [ a [ class "deleteToken", onClick DeleteButton ] [ text "Delete API token" ] ]
]


tokenAbsent : Model -> List (Html Msg)
tokenAbsent model =
[ li [] [ a [ class "no-click no-token" ] [ text "You don't have an API token yet." ] ]
, li [ class "footer" ] [ a [ class "createToken", onClick CreateButton ] [ text "Create an API Token" ] ]
, li [ class "footer" ] [ a [ class "createToken", onClick CreateButton ] [ text "Create an API token" ] ]
]


Expand Down

0 comments on commit 8e28d6a

Please sign in to comment.