Skip to content

Commit

Permalink
fix: fieldStatus should be optional (#2523)
Browse files Browse the repository at this point in the history
  • Loading branch information
colomolo authored Jan 23, 2025
1 parent 51e9b5e commit 3e13d96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/common-types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ export interface EntityMetaSysProps extends MetaSysProps {
firstPublishedAt?: string
publishedCounter?: number
locale?: string
fieldStatus: { '*': Record<string, 'draft' | 'changed' | 'published'> }
fieldStatus?: { '*': Record<string, 'draft' | 'changed' | 'published'> }
}

export interface EntryMetaSysProps extends EntityMetaSysProps {
Expand Down

0 comments on commit 3e13d96

Please sign in to comment.