Skip to content

Commit

Permalink
Bug 1795160 - OAuth2 client admin UI form field for description is to…
Browse files Browse the repository at this point in the history
…o small and should be size of DB column
  • Loading branch information
dklawren committed Oct 15, 2022
1 parent 8509bba commit a0d5894
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions template/en/default/admin/oauth/provider/create.html.tmpl
Expand Up @@ -7,7 +7,7 @@
<table border="0" cellpadding="4" cellspacing="0">
<tr>
<th align="right"><label for="description">Client Description:</label></th>
<td><input id="description" size="20" maxlength="20" name="description"></td>
<td><input id="description" size="40" maxlength="255" name="description"></td>
</tr>
<tr>
<th align="right"><label for="id">Client ID:</label></th>
Expand All @@ -19,7 +19,7 @@
</tr>
<tr>
<th class="field_label"><label for="hostname">Redirect Hostname:</label></th>
<td><input id="hostname" name="hostname"></td>
<td><input id="hostname" size="40" maxlength="255" name="hostname"></td>
</tr>
<tr>
<th class="field_label"><label for="scopes">Scopes:</label></th>
Expand Down
11 changes: 8 additions & 3 deletions template/en/default/admin/oauth/provider/edit.html.tmpl
Expand Up @@ -7,8 +7,10 @@
<table border="0" cellpadding="4" cellspacing="0">
<tr>
<th class="field_label"><label for="description">Client Description:</label></th>
<td><input id="description" size="20" maxlength="20" name="description" value="
[%- client.description FILTER html %]"></td>
<td>
<input id="description" size="40" maxlength="255" name="description"
value="[% client.description FILTER html %]">
</td>
</tr>
<tr>
<th class="field_label"><label for="id">Client ID:</label></th>
Expand All @@ -20,7 +22,10 @@
</tr>
<tr>
<th class="field_label"><label for="hostname">Redirect Hostname:</label></th>
<td><input id="hostname" name="hostname" value="[% client.hostname FILTER html %]"></td>
<td>
<input id="hostname" size="40" maxlength="255" name="hostname"
value="[% client.hostname FILTER html %]">
</td>
</tr>
<tr>
<th class="field_label"><label for="active">Active:</label></th>
Expand Down

0 comments on commit a0d5894

Please sign in to comment.