Fix/opportunities board (#2610)
* WIP * wip * update pipelineStepId * rename pipeline stage to pipeline step * rename pipelineProgress to Opportunity * fix UUID type not queried * fix boardColumnTotal * fix micros * fixing filters, sorts and fields * wip * wip * Fix opportunity board re-render --------- Co-authored-by: Lucas Bordeau <bordeau.lucas@gmail.com> Co-authored-by: bosiraphael <raphael.bosi@gmail.com>
This commit is contained in:
@ -19,7 +19,7 @@ export const PipelineAddButton = () => {
|
||||
|
||||
const handleCompanySelected = (
|
||||
selectedCompany: EntityForSelect | null,
|
||||
selectedPipelineStageId: string | null,
|
||||
selectedPipelineStepId: string | null,
|
||||
) => {
|
||||
if (!selectedCompany?.id) {
|
||||
enqueueSnackBar(
|
||||
@ -33,7 +33,7 @@ export const PipelineAddButton = () => {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!selectedPipelineStageId) {
|
||||
if (!selectedPipelineStepId) {
|
||||
enqueueSnackBar(
|
||||
'There was a problem with the pipeline stage selection, please retry.',
|
||||
{
|
||||
@ -45,7 +45,7 @@ export const PipelineAddButton = () => {
|
||||
return;
|
||||
}
|
||||
closeDropdown();
|
||||
//createCompanyProgress(selectedCompany.id, selectedPipelineStageId);
|
||||
//createCompanyProgress(selectedCompany.id, selectedPipelineStepId);
|
||||
};
|
||||
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user