fix: only show copy button on secure context
This commit is contained in:
@@ -258,6 +258,7 @@
|
|||||||
<input type="text" x-model="confirmationText"
|
<input type="text" x-model="confirmationText"
|
||||||
class="p-2 pr-10 w-full text-black rounded cursor-text input" readonly>
|
class="p-2 pr-10 w-full text-black rounded cursor-text input" readonly>
|
||||||
<button @click="copyConfirmationText()"
|
<button @click="copyConfirmationText()"
|
||||||
|
x-show="window.isSecureContext"
|
||||||
class="absolute right-2 top-1/2 text-gray-500 transform -translate-y-1/2 hover:text-gray-700"
|
class="absolute right-2 top-1/2 text-gray-500 transform -translate-y-1/2 hover:text-gray-700"
|
||||||
title="Copy confirmation text" x-ref="copyButton">
|
title="Copy confirmation text" x-ref="copyButton">
|
||||||
<template x-if="!copied">
|
<template x-if="!copied">
|
||||||
|
@@ -59,6 +59,7 @@
|
|||||||
class="font-mono pr-10"
|
class="font-mono pr-10"
|
||||||
/>
|
/>
|
||||||
<button
|
<button
|
||||||
|
x-show="window.isSecureContext"
|
||||||
@click="navigator.clipboard.writeText(secretKey); copiedSecretKey = true; setTimeout(() => copiedSecretKey = false, 2000)"
|
@click="navigator.clipboard.writeText(secretKey); copiedSecretKey = true; setTimeout(() => copiedSecretKey = false, 2000)"
|
||||||
class="absolute right-2 bottom-1 p-1 rounded hover:bg-gray-200 dark:hover:bg-gray-700"
|
class="absolute right-2 bottom-1 p-1 rounded hover:bg-gray-200 dark:hover:bg-gray-700"
|
||||||
>
|
>
|
||||||
@@ -78,6 +79,7 @@
|
|||||||
class="font-mono pr-10"
|
class="font-mono pr-10"
|
||||||
/>
|
/>
|
||||||
<button
|
<button
|
||||||
|
x-show="window.isSecureContext"
|
||||||
@click="navigator.clipboard.writeText(otpUrl); copiedOtpUrl = true; setTimeout(() => copiedOtpUrl = false, 2000)"
|
@click="navigator.clipboard.writeText(otpUrl); copiedOtpUrl = true; setTimeout(() => copiedOtpUrl = false, 2000)"
|
||||||
class="absolute right-2 bottom-1 p-1 rounded hover:bg-gray-200 dark:hover:bg-gray-700"
|
class="absolute right-2 bottom-1 p-1 rounded hover:bg-gray-200 dark:hover:bg-gray-700"
|
||||||
>
|
>
|
||||||
|
Reference in New Issue
Block a user