summaryrefslogtreecommitdiff
path: root/src/Columns/LinkColumn.php
diff options
context:
space:
mode:
authorSam Light <samlight1994@gmail.com>2025-08-26 21:50:06 +0100
committerSam Light <samlight1994@gmail.com>2025-08-26 21:50:06 +0100
commit13a96ece2be65faa31c36663c771db2265a7a461 (patch)
treeea45095fcf9fb9b20e9eaa839db17e95bd7884c2 /src/Columns/LinkColumn.php
parent38a3aa1ad773eaaa0b9c899e0b793b6c1fa01bf0 (diff)
Update LinkColumn to not use call to get its URLHEADv1.2.1master
Diffstat (limited to 'src/Columns/LinkColumn.php')
-rw-r--r--src/Columns/LinkColumn.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Columns/LinkColumn.php b/src/Columns/LinkColumn.php
index 5cc8407..35cedcf 100644
--- a/src/Columns/LinkColumn.php
+++ b/src/Columns/LinkColumn.php
@@ -24,7 +24,7 @@ class LinkColumn extends ElementColumn
public function getElemAttributes(Model $row) : array
{
return parent::getElemAttributes($row) + [
- 'href' => $this->urlFn->call($this, $row),
+ 'href' => ($this->urlFn)($row),
];
}