Skip to content

Commit

Permalink
fix: fixes getFieldDisplay value type
Browse files Browse the repository at this point in the history
  • Loading branch information
edusig committed May 12, 2023
1 parent 6119c32 commit bc6066e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resource.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export class ResourceManager<
return this.defaultFieldObjectManager;
}

getFieldDisplay(field: APIFieldUnion, value?: FieldValidation): DisplayResult {
getFieldDisplay(field: APIFieldUnion, value?: any): DisplayResult {
return this.getManager(field).display(field, value);
}

Expand Down

0 comments on commit bc6066e

Please sign in to comment.