From 20c00d8c9386c3cd4472c0671a770888934ed54b Mon Sep 17 00:00:00 2001 From: Owen Leonard Date: Fri, 2 Jun 2023 14:00:34 +0000 Subject: [PATCH] Bug 33883: "Make sure to copy your API secret" message overlaps text MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This patch updates the markup on the patron API keys page so that it uses standard classes for dialogs and page sections. To test you must have RESTOAuth2ClientCredentials enabled. - Apply the patch and locate a patron record. - From their checkout or detail page, choose More -> Manage API keys - Click "Generate a new client id/secret pair" - Enter a description and click Save. - You should see a message in a standard message-style dialog, "Make sure to copy your API secret now. You won’t be able to see it again!" - The API key information should be displayed in a .page-section div. - The table of existing keys should be displayed in a .page-section div. --- .../prog/en/modules/members/apikeys.tt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/apikeys.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/apikeys.tt index fb6167487e..5ac62bba13 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/apikeys.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/apikeys.tt @@ -36,8 +36,8 @@ [% IF fresh_api_key %] [%# A fresh api key was generated, display the secret, only once %] -
- Make sure to copy your API secret now. You won’t be able to see it again! +
Make sure to copy your API secret now. You won’t be able to see it again!
+
  1. Description: @@ -72,8 +72,8 @@ -
    - [% IF api_keys.count %] + [% IF api_keys.count %] +

    @@ -117,10 +117,10 @@ [% END %] - [% ELSE %] -
    No keys defined for the current patron. Generate a new client id/secret pair
    - [% END %] -
    +
    + [% ELSE %] + + [% END %]
-- 2.30.2