Skip to content

Commit

Permalink
refactor: rename description field to tasks in milestone (#1802)
Browse files Browse the repository at this point in the history
  • Loading branch information
andyesp committed May 20, 2024
1 parent 745f285 commit ee59ada
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/entities/Grant/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const MilestoneItemSchema = {
minLength: 1,
maxLength: 80,
},
description: {
tasks: {
type: 'string',
minLength: 1,
maxLength: 750,
Expand Down Expand Up @@ -443,7 +443,7 @@ export type TeamMember = {

type Milestone = {
title: string
description: string
tasks: string
delivery_date: string
}

Expand Down

0 comments on commit ee59ada

Please sign in to comment.