Explorar el Código

sticky note fix

Peter Muturi hace 1 año
padre
commit
2eddbf0f5b

+ 3 - 3
resources/views/app/patient/partials/sticky-notes-history.blade.php

@@ -25,8 +25,8 @@ $recentStickyNotes = ClientStickyNote::where('client_id', $patient->id)->orderBy
 				<tbody>
 					@foreach($recentStickyNotes as $sn)
 					<tr>
-						<td>{{ friendly_date_time($sn->created_at) }}</td>
-						<td style="max-width: 400px;"><?= nl2br($sn->sticky_note) ?></td>
+						<td style="width:180px">{{ friendly_date_time($sn->created_at) }}</td>
+						<td style="width:400px;"><?= nl2br($sn->sticky_note) ?></td>
 						<td>{{ $sn->createdBy->pro->displayName() }}</td>
 					</tr>
 					@endforeach
@@ -39,4 +39,4 @@ $recentStickyNotes = ClientStickyNote::where('client_id', $patient->id)->orderBy
 			</table>
 		</div>
 	</form>
-</div>
+</div>