Skip to content

Commit

Permalink
Add Short Description field to Service (#1299)
Browse files Browse the repository at this point in the history
* Add Short Description field to Service

* Prettier

---------

Co-authored-by: Brian Schroer <[email protected]>
  • Loading branch information
schroerbrian and Brian Schroer authored Sep 7, 2023
1 parent fcbb0db commit 31711ef
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions app/components/edit/ProvidedService.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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?",
Expand Down
1 change: 1 addition & 0 deletions app/models/Service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 31711ef

Please sign in to comment.