Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions resources/sass/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -536,3 +536,9 @@ main {
}
}
}

.code-wrap {
white-space: pre-wrap;
overflow-wrap: break-word;
word-break: break-word;
}
2 changes: 1 addition & 1 deletion resources/views/activity/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
<tr>
<td class="p-0" colspan="5">
<div class="collapse border-top p-3" id="activityProperties{{ $activity->id }}">
<pre class="mb-0">{{ json_encode($activity->properties, JSON_PRETTY_PRINT) }}</pre>
<pre class="mb-0 code-wrap">{{ json_encode($activity->properties, JSON_PRETTY_PRINT) }}</pre>
</div>
</td>
</tr>
Expand Down