Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions backend/vapor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
id: 68983
id: 69938
name: HiEvents
environments:
production:
Expand All @@ -8,8 +8,8 @@ environments:
cli-memory: 512
runtime: 'php-8.3:al2'
warm: 3
cache: hievents-redis-prod
database: hievents-db-prod
cache: hievents-redis
database: hievents-postgres
queues:
- hievents-queue-prod
- hievents-webhook-queue-prod
Expand All @@ -28,8 +28,8 @@ environments:
cli-memory: 512
runtime: 'php-8.3:al2'
warm: 3
cache: hievents-redis-prod
database: hievents-db-prod
cache: hievents-redis
database: hievents-postgres
queue:
- hievents-queue-prod
- hievents-webhook-queue-staging
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@
@include respond-below(md) {
min-height: 100vh;
justify-content: space-between;
padding: 20px;
}

a {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
place-self: flex-start;
margin-right: 10px;
color: var(--homepage-secondary-color, var(--tk-primary));
min-width: 20px;
}
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import {IconCalendar, IconExternalLink, IconMapPin} from "@tabler/icons-react";
import classes from "./EventInformation.module.scss";
import {prettyDate} from "../../../../utilites/dates.ts";
import {formatAddress} from "../../../../utilites/formatAddress.tsx";
import {t} from "@lingui/macro";
import {Button} from "@mantine/core";
Expand All @@ -22,8 +21,8 @@ export const EventInformation: FC<{
return (
<>
<div className={classes.preHeading}>
<div className={classes.date}>
{prettyDate(event.start_date, event.timezone)}
<div className={classes.organizer}>
{event.organizer?.name}
</div>
<div className={classes.shareButtons}>
<ShareComponent
Expand All @@ -37,7 +36,6 @@ export const EventInformation: FC<{
<h1 className={classes.eventTitle}>{event.title}</h1>
<div className={classes.eventInfo}>
<div className={classes.eventDetail}>
<h2>{t`Date & Time`}</h2>
<div className={classes.details}>
<IconCalendar size={20}/>
<div>
Expand All @@ -48,9 +46,8 @@ export const EventInformation: FC<{

{event.settings?.location_details && (
<div className={classes.eventDetail}>
<h2>{t`Location`}</h2>
<div className={classes.details}>
<IconMapPin size={25}/>
<IconMapPin size={20}/>
<div className={classes.detail}>
<b>{event.settings?.location_details?.venue_name}</b>
<div>{formatAddress(event.settings?.location_details)}</div>
Expand Down
Loading