diff --git a/app/components/edit/ProvidedService.tsx b/app/components/edit/ProvidedService.tsx index b076000aa..8cb0cc28f 100644 --- a/app/components/edit/ProvidedService.tsx +++ b/app/components/edit/ProvidedService.tsx @@ -224,6 +224,13 @@ const TEXT_AREAS = [ "Describe what you'll receive from this service in a few sentences.", field: "long_description", }, + { + label: + "Service Short Description (NOTE: THIS SHOULD ONLY BE MODIFIED FOR CERTAIN, SPECIAL CIRCUMSTANCES)", + placeholder: + "Describe what you'll receive from this service in a few sentences.", + field: "short_description", + }, { label: "Application Process", placeholder: "How do you apply for this service?", diff --git a/app/models/Service.ts b/app/models/Service.ts index 3942f907e..81c4b688c 100644 --- a/app/models/Service.ts +++ b/app/models/Service.ts @@ -42,6 +42,7 @@ export interface Service { required_documents: any; resource: Organization; schedule: Schedule; + short_description: string; source_attribution: string; status: "pending" | "approved" | "rejected" | "inactive"; updated_at: string;