浏览代码

MCP DB - msgs thread UI polish

Vijayakrishnan 3 年之前
父节点
当前提交
981c98b34f
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      resources/views/app/patient/messages-thread.blade.php

+ 2 - 2
resources/views/app/patient/messages-thread.blade.php

@@ -3,7 +3,7 @@
         @if($patient->smses && count($patient->smses))
             <thead>
             <tr>
-                <th class="px-2 text-secondary border-bottom-0">Date &amp; Time</th>
+                <th class="px-2 text-secondary border-bottom-0 text-nowrap">Date &amp; Time</th>
                 <th class="px-2 text-secondary border-bottom-0 w-25">Type</th>
                 <th class="px-2 text-secondary border-bottom-0 w-25">From</th>
                 <th class="px-2 text-secondary border-bottom-0 w-25">To</th>
@@ -13,7 +13,7 @@
             <tbody>
             @foreach($patient->smses as $sms)
                 <tr>
-                    <td class="px-2">{{ friendly_date_time($sms->created_at) }}</td>
+                    <td class="px-2 text-nowrap">{{ friendly_date_time($sms->created_at) }}</td>
                     <td class="px-2">{{ ucwords($sms->incoming_or_outgoing) }}</td>
                     <td class="px-2">{{ $sms->from_number }}</td>
                     <td class="px-2">{{ $sms->to_number }}</td>