fix controllers

This commit is contained in:
2024-01-15 17:33:24 +02:00
parent 9b5f124081
commit 584fe7eb95
2 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ class Record implements JsonSerializable
if(is_array($value)){
return $this->indexValues($value ?? []);
}
return (string)$value;
return str_replace(array("\r", "\n"), '', strip_tags((string)$value));
})
->values()->join(" ")." ". $this->_file?->originalName ?? ""));
}