We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1bfeb8d + 7bac3b1 commit 012e659Copy full SHA for 012e659
src/Html/Column.php
@@ -512,7 +512,7 @@ public function parseRender(mixed $value): ?string
512
return $value($parameters);
513
} elseif ($this->isBuiltInRenderFunction($value)) {
514
return $value;
515
- } elseif ($view->exists($value)) {
+ } elseif (strlen($value) < 256 && $view->exists($value)) {
516
return $view->make($value)->with($parameters)->render();
517
}
518
0 commit comments