Add KanbanFieldMetadataId on View standard object (#4604)
* Add KanbanFieldMetadataId on View standard object * Deprecate Pipeline step * Fix * Use Constants instead of raw ids * Fix * Fix query runner * Fix according to review * Fix tests * Fix tests * Fix tests
This commit is contained in:
@ -26,7 +26,7 @@ export const query = gql`
|
||||
pointOfContactId
|
||||
updatedAt
|
||||
companyId
|
||||
pipelineStepId
|
||||
stage
|
||||
probability
|
||||
closeDate
|
||||
amount {
|
||||
@ -52,7 +52,7 @@ export const query = gql`
|
||||
pointOfContactId
|
||||
updatedAt
|
||||
companyId
|
||||
pipelineStepId
|
||||
stage
|
||||
probability
|
||||
closeDate
|
||||
amount {
|
||||
|
||||
@ -16,12 +16,5 @@ export const filterAvailableTableColumns = (
|
||||
return false;
|
||||
}
|
||||
|
||||
if (
|
||||
isFieldRelation(columnDefinition) &&
|
||||
columnDefinition.metadata?.fieldName === 'pipelineStep'
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user