Bugzilla – Attachment 180450 Details for
Bug 36275
The displayed values for Client ID and Secret need copy to clipboard buttons in apikeys.tt
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 36275: (follow-up) Only show tooltip on successful copy
Bug-36275-follow-up-Only-show-tooltip-on-successfu.patch (text/plain), 1.60 KB, created by
Nick Clemens (kidclamp)
on 2025-04-03 08:54:15 UTC
(
hide
)
Description:
Bug 36275: (follow-up) Only show tooltip on successful copy
Filename:
MIME Type:
Creator:
Nick Clemens (kidclamp)
Created:
2025-04-03 08:54:15 UTC
Size:
1.60 KB
patch
obsolete
>From 2752d25570d2a24864a8acda255d7ab2575ac801 Mon Sep 17 00:00:00 2001 >From: Paul Derscheid <paul.derscheid@lmscloud.de> >Date: Wed, 2 Apr 2025 13:27:20 +0000 >Subject: [PATCH] Bug 36275: (follow-up) Only show tooltip on successful copy >MIME-Version: 1.0 >Content-Type: text/plain; charset=UTF-8 >Content-Transfer-Encoding: 8bit > >Question is whether we should display anything on the failure case as well? > >Test plan stays the same. > >Signed-off-by: Emmanuel Bétemps <e.betemps@gmail.com> >Signed-off-by: Nick Clemens <nick@bywatersolutions.com> >--- > koha-tmpl/intranet-tmpl/prog/js/copyToClipboard.js | 8 ++++++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/copyToClipboard.js b/koha-tmpl/intranet-tmpl/prog/js/copyToClipboard.js >index e82ee8ceb32..e5ca50f2325 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/copyToClipboard.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/copyToClipboard.js >@@ -3,7 +3,7 @@ > "[data-copy-to-clipboard]" > ); > if (copyToClipboardButtons.length) { >- const copyToClipboard = e => { >+ const copyToClipboard = async e => { > const target = e.target; > if (!(target instanceof HTMLButtonElement)) { > return; >@@ -13,7 +13,11 @@ > return; > } > >- navigator.clipboard.writeText(value); >+ try { >+ await navigator.clipboard.writeText(value); >+ } catch (_) { >+ return; >+ } > > target.title = __("Copied to clipboard"); > const tooltip = bootstrap.Tooltip.getOrCreateInstance(target); >-- >2.39.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 36275
:
180263
|
180299
|
180307
|
180336
|
180339
|
180352
|
180368
|
180369
|
180370
|
180405
|
180406
|
180407
|
180448
|
180449
| 180450