Bug 32141: Fix textbox formatting on edit IdP screen
This patch makes the textbox have the same number of rows and columns on the "Edit" page as it does on the "New" page for Identity Providers. Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
9d3a54f6f6
commit
98d5e21ad0
1 changed files with 2 additions and 2 deletions
|
@ -285,7 +285,7 @@
|
|||
<ol>
|
||||
<li>
|
||||
<label for="config" class="required json">Configuration: </label>
|
||||
<textarea name="config" id="config" class="required">[%- identity_provider.config | html -%]</textarea>
|
||||
<textarea name="config" id="config" class="required" cols="75" rows="10">[%- identity_provider.config | html -%]</textarea>
|
||||
<span class="required">Required</span>
|
||||
<div class="hint">Provider's main configuration. <button class="more btn btn-ligth" data-target="config"><i class="fa fa-caret-down"></i> More</button></div>
|
||||
<div class="hint more-config" style="display: none">
|
||||
|
@ -298,7 +298,7 @@
|
|||
</li>
|
||||
<li>
|
||||
<label for="mapping" class="required json">Mapping: </label>
|
||||
<textarea name="mapping" id="mapping" class="required">[%- identity_provider.mapping | html -%]</textarea>
|
||||
<textarea name="mapping" id="mapping" class="required" cols="75" rows="10">[%- identity_provider.mapping | html -%]</textarea>
|
||||
<span class="required">Required</span>
|
||||
<div class="hint">Map provider's result to Koha patron's fields. <button class="more btn btn-ligth" data-target="mapping"><i class="fa fa-caret-down"></i> More</button></div>
|
||||
<div class="hint more-mapping" style="display: none">
|
||||
|
|
Loading…
Reference in a new issue