Skip to content

Commit

Permalink
feat(event): clarify time of arrival
Browse files Browse the repository at this point in the history
  • Loading branch information
xfoxfu committed Oct 25, 2024
1 parent 58e6c28 commit 6ee9d13
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Net.Vatprc.Uniapi.UI.Event/src/components/slot-detail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export const SlotDetail = ({ eventId, slotId }: { eventId: string; slotId: strin
</Group>
{slot?.leave_at && (
<Group>
<Pill>TTA</Pill>
<Pill>ELDT</Pill>
<DateTime>{slot?.leave_at}</DateTime>
</Group>
)}
Expand Down
2 changes: 1 addition & 1 deletion Net.Vatprc.Uniapi.UI.Event/src/components/slot-import.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export const ImportSlot = ({ eventId }: { eventId: string }) => {
<DateTime noDate>{slot.enter_at}</DateTime>
</Text>
<Text>
<Pill mr="xs">TTA</Pill>
<Pill mr="xs">ELDT</Pill>
<DateTime noDate>{slot.enter_at}</DateTime>
</Text>
</Stack>
Expand Down
2 changes: 1 addition & 1 deletion Net.Vatprc.Uniapi.UI.Event/src/routes/events/$event_id.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const EventComponent = () => {
</Text>
{slot.leave_at && (
<Text>
<Pill mr="xs">TTA</Pill>
<Pill mr="xs">ELDT</Pill>
<DateTime noDistance noDate>
{slot.leave_at}
</DateTime>
Expand Down

0 comments on commit 6ee9d13

Please sign in to comment.