fix(infra): fix built in property order error (#8524)

This commit is contained in:
EYHN
2024-10-17 05:15:09 +00:00
parent 4e640b4ffc
commit ee641f0377
3 changed files with 31 additions and 8 deletions
@@ -2,10 +2,13 @@ import type { DocCustomPropertyInfo } from '../db';
/**
* default built-in custom property, user can update and delete them
*
* 'id' and 'type' is request, 'index' is a manually maintained incremental key.
*/
export const BUILT_IN_CUSTOM_PROPERTY_TYPE = [
{
id: 'tags',
type: 'tags',
index: 'a0000001',
},
] as DocCustomPropertyInfo[];