From f887a9f7170ed79b39a1e123f3cf19794b4a9d2e Mon Sep 17 00:00:00 2001 From: Kenneth Date: Thu, 22 Feb 2024 14:33:30 -0600 Subject: [PATCH 1/4] Changes to OrgDirectoryGrid --- src/components/OrgDirectoryGrid.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/OrgDirectoryGrid.tsx b/src/components/OrgDirectoryGrid.tsx index 6faf723a..dc98ee59 100644 --- a/src/components/OrgDirectoryGrid.tsx +++ b/src/components/OrgDirectoryGrid.tsx @@ -14,7 +14,7 @@ const OrgDirectoryGrid: FC = async ({ tag }) => { const session = await getServerAuthSession(); return ( -
+
{clubs.map((club) => ( Date: Thu, 22 Feb 2024 17:10:00 -0600 Subject: [PATCH 2/4] Updated README to have code for proper enums for Jupiter. --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a8df8cb9..d3b75d22 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,9 @@ $$;
Enums
-Currently, drizzle does not automatically create enums for you. You will have to create them manually. This [link](https://orm.drizzle.team/docs/column-types/pg#enum) should give you a good idea of how to create enums in postgres. +Run the following command to create the proper enums: + +CREATE TYPE platform AS ENUM ('discord', 'youtube', 'twitch', 'facebook', 'twitter', 'instagram', 'website', 'email', 'other');

From 8fa45968d8f3b657a369c78b195587a2274b1351 Mon Sep 17 00:00:00 2001 From: Kenneth Date: Wed, 28 Feb 2024 01:45:22 -0600 Subject: [PATCH 3/4] Height of each card was changed to be smaller as there was a bit too much space in description section. --- src/components/DirectoryOrgs.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/DirectoryOrgs.tsx b/src/components/DirectoryOrgs.tsx index 3d96c939..90c9d3c1 100644 --- a/src/components/DirectoryOrgs.tsx +++ b/src/components/DirectoryOrgs.tsx @@ -16,7 +16,7 @@ const OrgDirectoryCards: FC = ({ club, session, priority }) => { const name = club.name.length > 20 ? club.name.slice(0, 30) + '...' : club.name; return ( -
+
= ({ club, session, priority }) => {
-
+

{name}

From e32e35f867d9d03e112105ecad75d346fe177f7f Mon Sep 17 00:00:00 2001 From: Kenneth Date: Wed, 28 Feb 2024 01:54:14 -0600 Subject: [PATCH 4/4] Adjusted organization grid margins. --- src/components/OrgDirectoryGrid.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/OrgDirectoryGrid.tsx b/src/components/OrgDirectoryGrid.tsx index dc98ee59..96199818 100644 --- a/src/components/OrgDirectoryGrid.tsx +++ b/src/components/OrgDirectoryGrid.tsx @@ -14,7 +14,7 @@ const OrgDirectoryGrid: FC = async ({ tag }) => { const session = await getServerAuthSession(); return ( -
+
{clubs.map((club) => (