|
@@ -919,8 +919,8 @@
|
|
|
@if($patient->memos && count($patient->memos))
|
|
|
<thead>
|
|
|
<tr>
|
|
|
- <th class="px-2 text-secondary w-25">Category</th>
|
|
|
- <th class="px-2 text-secondary w-50">Summary</th>
|
|
|
+ <th class="px-2 text-secondary">Category</th>
|
|
|
+ <th class="px-2 text-secondary w-75">Summary</th>
|
|
|
<th class="px-2 text-secondary">Created</th>
|
|
|
<th class="px-2 text-secondary delete-column"> </th>
|
|
|
</tr>
|
|
@@ -928,9 +928,9 @@
|
|
|
<tbody>
|
|
|
@foreach($patient->memos as $memo)
|
|
|
<tr>
|
|
|
- <td class="px-2">{{ $memo->category }}</td>
|
|
|
+ <td class="px-2 text-nowrap">{{ $memo->category }}</td>
|
|
|
<td class="px-2"><pre class="m-0 break-spaces">{{ $memo->content }}</pre></td>
|
|
|
- <td class="px-2">{{ friendly_date_time($memo->created_at) }}</td>
|
|
|
+ <td class="px-2 text-nowrap">{{ friendly_date_time($memo->created_at) }}</td>
|
|
|
<td class="px-2 text-center delete-column">
|
|
|
<div moe wide relative class="mr-2">
|
|
|
<a class="on-hover-opaque" start show title="Edit">
|