From 14c1d9df1552de86c597e6f2bf92be05f4a28733 Mon Sep 17 00:00:00 2001 From: HolgerHatGarKeineNode Date: Sun, 7 Dec 2025 06:28:06 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=8B=20Add=20copy-to-clipboard=20featur?= =?UTF-8?q?e=20for=20service=20URLs:=20Enhance=20user=20experience=20by=20?= =?UTF-8?q?allowing=20easy=20copying=20of=20clearnet,=20onion,=20I2P,=20an?= =?UTF-8?q?d=20pkdns=20links.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../views/livewire/services/index.blade.php | 84 ++++++++++++------- 1 file changed, 56 insertions(+), 28 deletions(-) diff --git a/resources/views/livewire/services/index.blade.php b/resources/views/livewire/services/index.blade.php index 88b957b..451cab2 100644 --- a/resources/views/livewire/services/index.blade.php +++ b/resources/views/livewire/services/index.blade.php @@ -107,40 +107,68 @@ class extends Component {
@if($service->url_clearnet) - - - - Clearnet - - +
+ + + + Clearnet + + +
+ + {{ __('Copy') }} + +
+
@endif @if($service->url_onion) - - - - Onion - - +
+ + + + Onion + + +
+ + {{ __('Copy') }} + +
+
@endif @if($service->url_i2p) - - - - I2P - - +
+ + + + I2P + + +
+ + {{ __('Copy') }} + +
+
@endif @if($service->url_pkdns) - - - - pkdns - - +
+ + + + pkdns + + +
+ + {{ __('Copy') }} + +
+
@endif @if($service->ip)