소스 검색

sticky note fix

Peter Muturi 1 년 전
부모
커밋
2eddbf0f5b
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      resources/views/app/patient/partials/sticky-notes-history.blade.php

+ 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>