File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export function EventCard({ Event }: { Event: Models.IEvent }) {
31
31
< div className = "flex items-center gap-x-3" >
32
32
< Indicator Type = { Event . Type } />
33
33
34
- < h3 className = "text-2xl font-medium text-slate-800" >
34
+ < h3 className = "text-2xl font-medium text-slate-800 break-all " >
35
35
{ Event . Title }
36
36
</ h3 >
37
37
</ div >
@@ -72,11 +72,11 @@ export function EventCard({ Event }: { Event: Models.IEvent }) {
72
72
</ label >
73
73
74
74
< label className = "text-xl font-medium text-slate-700" >
75
- { dayjs ( Event . Start ) . tz ( Dic . TZ ) . format ( Dic . Time ) }
75
+ { dayjs ( Event . Start ) . tz ( Dic . TZ ) . format ( Dic . TimeTZ ) }
76
76
</ label >
77
77
78
78
< label className = "text-xl font-medium text-slate-700" >
79
- { Event . End ? dayjs ( Event . End ) . tz ( Dic . TZ ) . format ( Dic . Time ) : "Still Ongoing" }
79
+ { Event . End ? dayjs ( Event . End ) . tz ( Dic . TZ ) . format ( Dic . TimeTZ ) : "Still Ongoing" }
80
80
</ label >
81
81
</ div >
82
82
</ div >
Original file line number Diff line number Diff line change @@ -42,11 +42,11 @@ export function EventLog({ Event }: { Event: Models.IEvent }) {
42
42
< label className = "font-medium" > { history . Status } </ label >
43
43
44
44
< label >
45
- { dayjs ( history . Created ) . tz ( Dic . TZ ) . format ( Dic . Time ) }
45
+ { dayjs ( history . Created ) . tz ( Dic . TZ ) . format ( Dic . TimeTZ ) }
46
46
</ label >
47
47
</ td >
48
48
49
- < td className = "text-pretty" > { history . Message } </ td >
49
+ < td className = "text-pretty break-all " > { history . Message } </ td >
50
50
</ tr >
51
51
) ) }
52
52
</ tbody >
You can’t perform that action at this time.
0 commit comments