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:
David Cook 2022-11-09 02:07:03 +00:00 committed by Tomas Cohen Arazi
parent 9d3a54f6f6
commit 98d5e21ad0
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F

View file

@ -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">