File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ import { Models } from "~/Services/Status.Models";
77/**
88 * @author Aloento
99 * @since 1.0.0
10- * @version 0.1 .0
10+ * @version 0.2 .0
1111 */
1212export function EventLog ( { Event } : { Event : Models . IEvent } ) {
1313 const list = chain ( Array . from ( Event . Histories ) )
@@ -27,12 +27,16 @@ export function EventLog({ Event }: { Event: Models.IEvent }) {
2727 < tbody >
2828 { list . map ( ( history , i ) => (
2929 < tr key = { i } >
30- < td className = "flex flex-col" >
31- < label className = "font-medium" > { history . Status } </ label >
30+ < td className = "relative" >
31+ < div className = "flex flex-col min-h-full" >
32+ < label className = "font-medium" >
33+ { history . Status }
34+ </ label >
3235
33- < label >
34- { dayjs ( history . Created ) . tz ( Dic . TZ ) . format ( Dic . TimeTZ ) }
35- </ label >
36+ < label >
37+ { dayjs ( history . Created ) . tz ( Dic . TZ ) . format ( Dic . TimeTZ ) }
38+ </ label >
39+ </ div >
3640 </ td >
3741
3842 < td className = "text-pretty break-all" > { history . Message } </ td >
You can’t perform that action at this time.
0 commit comments