Commit 49c275a Simon Bjerre
committed
1 parent 232a1bf commit 49c275a Copy full SHA for 49c275a
File tree 1 file changed +2
-1
lines changed
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 1
1
import fixNetworkTime from "../utils/fixNetworkTime"
2
2
import convertZulu from "../utils/convertZulu"
3
+ import bookingType from "../utils/bookingType"
3
4
4
5
interface NetworkDataTypes {
5
6
name : string
@@ -150,7 +151,7 @@ const ScheduleTable: React.FC = () => {
150
151
{ groupedFilteredSessions [ date ] . map ( ( session : any ) => (
151
152
< tr key = { session . callsign } className = "h-6 even:bg-gray-50 odd:bg-white dark:even:bg-[#0f2a38] dark:odd:bg-black" >
152
153
{ session . type === 'Booking' ? < td className = "pl-[4px]" > ○ { session . callsign } </ td > : < td className = "pl-[4px]" > < span className = "text-[#1a4860]" > ●</ span > { session . callsign } </ td > }
153
-
154
+ < td > { bookingType ( session ) } </ td >
154
155
< td > { convertZulu ( session . time_start ) } </ td >
155
156
< td > { session . time_end ? convertZulu ( session . time_end ) : "" } </ td >
156
157
</ tr >
You can’t perform that action at this time.
0 commit comments