Fix context menu and favorites (#2564)

This commit is contained in:
Lucas Bordeau
2023-11-17 16:24:43 +01:00
committed by GitHub
parent becd7c2ece
commit a6d8cdb116
12 changed files with 197 additions and 35 deletions

View File

@ -125,11 +125,10 @@ export const seedCompanyFieldMetadata = async (
},
description: 'The company name',
icon: 'IconBuildingSkyscraper',
isNullable: false,
isNullable: true,
isSystem: false,
defaultValue: { value: '' },
},
// Scalar Fields
{
id: SeedCompanyFieldMetadataIds.DomainName,

View File

@ -135,7 +135,7 @@ export const seedFavoriteFieldMetadata = async (
targetColumnMap: {},
description: 'Favorite workspace member',
icon: 'IconCircleUser',
isNullable: false,
isNullable: true,
isSystem: false,
defaultValue: undefined,
},
@ -151,7 +151,7 @@ export const seedFavoriteFieldMetadata = async (
targetColumnMap: {},
description: 'Foreign key for workspace member',
icon: undefined,
isNullable: false,
isNullable: true,
isSystem: true,
defaultValue: undefined,
},
@ -185,7 +185,7 @@ export const seedFavoriteFieldMetadata = async (
targetColumnMap: {},
description: 'Foreign key for person',
icon: undefined,
isNullable: false,
isNullable: true,
isSystem: true,
defaultValue: undefined,
},
@ -217,7 +217,7 @@ export const seedFavoriteFieldMetadata = async (
targetColumnMap: {},
description: 'Foreign key for company',
icon: undefined,
isNullable: false,
isNullable: true,
isSystem: true,
defaultValue: undefined,
},