diff --git a/src/Datatables/src/Columns/TagsColumn.php b/src/Datatables/src/Columns/TagsColumn.php index 0c27291..58eb8ef 100644 --- a/src/Datatables/src/Columns/TagsColumn.php +++ b/src/Datatables/src/Columns/TagsColumn.php @@ -54,6 +54,6 @@ protected function defaultGetter(mixed $value, Model $row): mixed $tags = $value->take($this->limit)->when($value->count() > $this->limit, fn ($collection) => $collection->push($this->ellipsis)); $tags = $tags->map(fn ($tag) => sprintf('%s', e($tag)))->join(''); - return sprintf('
', $tags); + return sprintf('', $tags); } }