diff --git a/backend/src/api/article/content-types/article/schema.json b/backend/src/api/article/content-types/article/schema.json index 7cf4905..2129094 100644 --- a/backend/src/api/article/content-types/article/schema.json +++ b/backend/src/api/article/content-types/article/schema.json @@ -47,9 +47,9 @@ "Tag": { "type": "enumeration", "enum": [ - "Featured", - "News", - "Updates" + "Satellites", + "Projects", + "General" ] } } diff --git a/backend/types/generated/contentTypes.d.ts b/backend/types/generated/contentTypes.d.ts index 61b5592..39d8667 100644 --- a/backend/types/generated/contentTypes.d.ts +++ b/backend/types/generated/contentTypes.d.ts @@ -811,7 +811,7 @@ export interface ApiArticleArticle extends Schema.CollectionType { 'manyToOne', 'api::author.author' >; - Tag: Attribute.Enumeration<['Featured', 'News', 'Updates']>; + Tag: Attribute.Enumeration<['Satellites', 'Projects', 'General']>; createdAt: Attribute.DateTime; updatedAt: Attribute.DateTime; publishedAt: Attribute.DateTime; diff --git a/frontend/src/__generated__/graphql.ts b/frontend/src/__generated__/graphql.ts index a2f5ed1..ccf30f5 100644 --- a/frontend/src/__generated__/graphql.ts +++ b/frontend/src/__generated__/graphql.ts @@ -217,9 +217,9 @@ export type DateTimeFilterInput = { }; export enum Enum_Article_Tag { - Featured = 'Featured', - News = 'News', - Updates = 'Updates' + General = 'General', + Projects = 'Projects', + Satellites = 'Satellites' } export type FeaturedImage = { diff --git a/frontend/src/components/BlogpageButtons.tsx b/frontend/src/components/BlogpageButtons.tsx index 499065d..31f0533 100644 --- a/frontend/src/components/BlogpageButtons.tsx +++ b/frontend/src/components/BlogpageButtons.tsx @@ -32,16 +32,16 @@ export default function BlogpageButtons({ className }: { className?: string }) { All Posts );