Browse Source

Fix the rendering of the API token

Christophe Coevoet 7 years ago
parent
commit
c3998ddbba
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Resources/FOSUserBundle/views/Profile/show.html.twig

+ 1 - 1
app/Resources/FOSUserBundle/views/Profile/show.html.twig

@@ -9,7 +9,7 @@
 
         <div class="input-group api-token-group clearfix">
             <input id="api-token" type="text" class="form-control" value="" data-api-token="{{ app.user.apiToken }}" readonly="readonly">
-            <span class="input-group">
+            <span class="input-group-btn">
                 <button class="btn btn-success btn-show-api-token" type="button">{{ 'profile.show_api_token'|trans }}</button>
             </span>
         </div>