From f477ddd832163ed50616f99995781c7aa71c6863 Mon Sep 17 00:00:00 2001 From: Eelco Date: Tue, 6 Feb 2024 10:20:59 +0100 Subject: [PATCH] removed $this->evaluate() for tenantOwnershipRelationshipName() --- src/Components/Forms/CuratorPicker.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/Forms/CuratorPicker.php b/src/Components/Forms/CuratorPicker.php index 357c6ea..906a99d 100644 --- a/src/Components/Forms/CuratorPicker.php +++ b/src/Components/Forms/CuratorPicker.php @@ -366,7 +366,7 @@ public function isTenantAware(): bool public function tenantOwnershipRelationshipName(): bool { - return $this->evaluate($this->tenantOwnershipRelationshipName) ?? config('curator.tenant_ownership_relationship_name'); + return $this->tenantOwnershipRelationshipName ?? config('curator.tenant_ownership_relationship_name'); } public function lazyLoad(bool|Closure $condition = true): static