asdasd
This commit is contained in:
parent
4eddad76a7
commit
b791a3d648
|
|
@ -89,12 +89,12 @@ export default function Emails() {
|
||||||
<th className="pb-3 border-b border-gray-200">Subject</th>
|
<th className="pb-3 border-b border-gray-200">Subject</th>
|
||||||
|
|
||||||
{/* FESTE BREITEN für den Rest, damit sie nicht zerdrückt werden */}
|
{/* FESTE BREITEN für den Rest, damit sie nicht zerdrückt werden */}
|
||||||
<th className="pb-3 border-b border-gray-200 w-28">Date</th>
|
<th className="pb-3 border-b border-gray-200 w-14">Date</th>
|
||||||
<th className="pb-3 border-b border-gray-200 w-[28rem]">Key</th> {/* Breit genug für lange Keys */}
|
<th className="pb-3 border-b border-gray-200 w-[24rem]">Key</th> {/* Breit genug für lange Keys */}
|
||||||
<th className="pb-3 border-b border-gray-200 text-center w-12">Proc.</th>
|
|
||||||
<th className="pb-3 border-b border-gray-200 w-32">Proc. By</th>
|
<th className="pb-3 border-b border-gray-200 w-20">Proc. By</th>
|
||||||
<th className="pb-3 border-b border-gray-200 w-32">Queued</th>
|
<th className="pb-3 border-b border-gray-200 w-20">Queued</th>
|
||||||
<th className="pb-3 border-b border-gray-200 w-24">Status</th>
|
<th className="pb-3 border-b border-gray-200 w-16">Status</th>
|
||||||
<th className="pb-3 border-b border-gray-200 text-right w-16">Action</th>
|
<th className="pb-3 border-b border-gray-200 text-right w-16">Action</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
|
@ -120,11 +120,7 @@ export default function Emails() {
|
||||||
{e.key}
|
{e.key}
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td className="py-2 text-center align-middle">
|
|
||||||
{/* Kleinerer Badge */}
|
|
||||||
<span className={`inline-block w-4 h-4 rounded-full ${e.processed === 'true' ? 'bg-green-400' : 'bg-gray-300'}`} title={e.processed === 'true' ? 'Processed' : 'Not processed'}></span>
|
|
||||||
</td>
|
|
||||||
|
|
||||||
<td className="py-2 text-gray-500 text-xs truncate" title={e.processedBy || ''}>
|
<td className="py-2 text-gray-500 text-xs truncate" title={e.processedBy || ''}>
|
||||||
{e.processedBy ? e.processedBy.split('@')[0] : '-'}
|
{e.processedBy ? e.processedBy.split('@')[0] : '-'}
|
||||||
</td>
|
</td>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue