Jarrod Flesch
Jarrod Flesch
Corrects imports in templates to go directly to `@payloadcms/ui/path-to-file` instead of using the barrel export.
- [x] I have read and understand the [CONTRIBUTING.md](https://github.com/payloadcms/payload/blob/main/CONTRIBUTING.md) document in this repository. ## Description This change separates Drawers reliance on EditDepth, and instead uses a new DrawerDepth provider so...
### Link to reproduction _No response_ ### Payload Version 3.0 Latest ### Node Version 18 ### Next.js Version 15 ### Describe the Bug When you select a tenant the sidebar...
## Description Extends buildConfigWithDefaults in test suite to improve ease of testing without autoLogin. - [ ] I have read and understand the [CONTRIBUTING.md](https://github.com/payloadcms/payload/blob/main/CONTRIBUTING.md) document in this repository. ## Type...
### What? Fixes issue with stale locale from searchParams ### Why? Bad use of useEffect/useState inside our useSearchParams provider. ### How? Memoize the locale instead of relying on the useEffect...
### What? Custom auth collections default `useAsTitle` to `id`. ### Why? It is more expected for auth collections to search on email or username. ### How? Defaults useAsTitle to `username`...
### What? Consolidates `duplicate` and `create` operations. ### Why? The `create` and `duplicate` operations were very duplicative. The only thing the duplicate operation did differently was build up the document...
## Description This PR extends the functionality of the select field, allowing you to group items together. You can also mix and match option types now. ```ts { name: 'presidents',...
### What? Consolidates logic in update and updateByID. These two operations used a lot of the same core functionality. This is a QOL improvement for future features/fixes on each operation....