From e670e99a7cc6570880e220306e3db6500bf3f159 Mon Sep 17 00:00:00 2001 From: HolgerHatGarKeineNode Date: Tue, 20 Jan 2026 00:58:23 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Update=20profile=20view:=20add=20`n?= =?UTF-8?q?o=5Femail`=20property=20handling=20for=20better=20email=20visib?= =?UTF-8?q?ility=20management.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/views/livewire/association/profile.blade.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/views/livewire/association/profile.blade.php b/resources/views/livewire/association/profile.blade.php index 1475a34..d9d493b 100644 --- a/resources/views/livewire/association/profile.blade.php +++ b/resources/views/livewire/association/profile.blade.php @@ -60,6 +60,7 @@ new class extends Component ->where('pubkey', $this->currentPubkey)->first(); if ($this->currentPleb) { $this->email = $this->currentPleb->email; + $this->no = $this->currentPleb->no_email; $this->showEmail = ! $this->no; if ($this->currentPleb->association_status === AssociationStatus::ACTIVE) { $this->amountToPay = config('app.env') === 'production' ? 21000 : 1;