瀏覽代碼

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>