Skip to content

Commit

Permalink
test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Calder committed Nov 9, 2022
1 parent 2e74acd commit a66fdd8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 0 additions & 5 deletions examples/basic/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,6 @@ const User: Lists.User = list({
email: text({
isIndexed: 'unique',
validation: { isRequired: true },
ui: {
itemView: {
fieldPosition: 'sidebar',
},
},
}),
/** Avatar upload for the users profile, stored locally */
avatar: image({ storage: 'my_images' }),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,10 @@ export type KeystoneAdminUIFieldMetaItemViewFieldMode =
| "read"
| "hidden";
export type KeystoneAdminUIFieldMetaItemViewFieldPosition =
| "form"
| "sidebar";
export type QueryMode =
| "default"
| "insensitive";
Expand Down

0 comments on commit a66fdd8

Please sign in to comment.