fix(db-mongodb): removes precedence of regular chars over international chars in sort (#7294)

## Description

V2 PR [here](https://github.com/payloadcms/payload/pull/6923)

- [x] I have read and understand the
[CONTRIBUTING.md](https://github.com/payloadcms/payload/blob/main/CONTRIBUTING.md)
document in this repository.

## Type of change

- [x] Bug fix (non-breaking change which fixes an issue)

## Checklist:

- [x] I have added tests that prove my fix is effective or that my
feature works
- [x] Existing test suite passes locally with my changes
This commit is contained in:
Patrik
2024-07-23 09:03:00 -04:00
committed by GitHub
parent b6d4bc4d37
commit b3e8ddf302
8 changed files with 94 additions and 7 deletions

View File

@@ -27,7 +27,7 @@ export interface Config {
globals: {
'global-array': GlobalArray;
};
locale: 'en' | 'es' | 'pt' | 'ar';
locale: 'en' | 'es' | 'hu' | 'pt' | 'ar';
user: User & {
collection: 'users';
};
@@ -70,6 +70,7 @@ export interface User {
export interface LocalizedPost {
id: string;
title?: string | null;
localizedDescription?: string | null;
description?: string | null;
localizedCheckbox?: boolean | null;
children?: (string | LocalizedPost)[] | null;
@@ -316,6 +317,6 @@ export interface Auth {
declare module 'payload' {
// @ts-ignore
// @ts-ignore
export interface GeneratedTypes extends Config {}
}
}