Do not enrich relations when id undefined (#13530)
Fixes https://github.com/twentyhq/twenty/issues/13428 We perform the call enrichment even with id undefined. It returns the first item in DB. Adding two more fixes related to filters: - Conditions title - Fixing placeholder color for select control (only other impacted field is in Advanced filters)
This commit is contained in:
@@ -48,7 +48,7 @@ const StyledControlContainer = styled.div<{
|
||||
? theme.font.color.tertiary
|
||||
: textAccent === 'default'
|
||||
? theme.font.color.primary
|
||||
: theme.font.color.secondary};
|
||||
: theme.font.color.tertiary};
|
||||
cursor: ${({ disabled }) => (disabled ? 'not-allowed' : 'pointer')};
|
||||
text-align: left;
|
||||
`;
|
||||
|
||||
Reference in New Issue
Block a user