diff --git a/front/src/modules/pipeline-progress/components/NewButton.tsx b/front/src/modules/pipeline-progress/components/NewButton.tsx index 1ac8cebd03..e54b82b4e2 100644 --- a/front/src/modules/pipeline-progress/components/NewButton.tsx +++ b/front/src/modules/pipeline-progress/components/NewButton.tsx @@ -42,7 +42,7 @@ export function NewButton({ pipelineId, columnId }: OwnProps) { const handleEntitySelect = useCallback( async (company: Pick) => { - if (!company || !company.name || !company.domainName) return; + if (!company) return; setIsCreatingCard(false); goBackToPreviousHotkeysScope(); diff --git a/front/src/modules/ui/components/editor/BlockEditor.tsx b/front/src/modules/ui/components/editor/BlockEditor.tsx index f86f85eb2c..c6cd73a7b7 100644 --- a/front/src/modules/ui/components/editor/BlockEditor.tsx +++ b/front/src/modules/ui/components/editor/BlockEditor.tsx @@ -12,6 +12,7 @@ const StyledEditor = styled.div` & .editor { background: ${({ theme }) => theme.background.primary}; font-size: 13px; + color: ${({ theme }) => theme.font.color.primary}; } & .editor [class^='_inlineContent']:before { color: ${({ theme }) => theme.font.color.tertiary};