Skip to content

Commit 8883b3d

Browse files
Truncate data when displaying in example
1 parent d022bff commit 8883b3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/partials/example.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<x-core::table.body.row>
3030
@foreach ($importer->getColumns() as $column)
3131
<x-core::table.body.cell>
32-
{{ Arr::get($example, $column->getName()) }}
32+
{{ Str::limit(Arr::get($example, $column->getName()), 100) }}
3333
</x-core::table.body.cell>
3434
@endforeach
3535
</x-core::table.body.row>

0 commit comments

Comments
 (0)