Skip to content

Commit 2761be1

Browse files
Merge pull request krayin#2134 from rohansingh754/remove-stage-duplicate
issue krayin#1992 fixed
2 parents 94d3da9 + e8c23ab commit 2761be1

File tree

3 files changed

+10
-19
lines changed

3 files changed

+10
-19
lines changed

composer.json

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -82,13 +82,15 @@
8282
"Tests\\": "tests/"
8383
}
8484
},
85-
"repositories": [{
86-
"type": "path",
87-
"url": "packages/*/*",
88-
"options": {
89-
"symlink": true
85+
"repositories": [
86+
{
87+
"type": "path",
88+
"url": "packages/*/*",
89+
"options": {
90+
"symlink": true
91+
}
9092
}
91-
}],
93+
],
9294
"minimum-stability": "stable",
9395
"prefer-stable": true,
9496
"scripts": {

composer.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/Webkul/Automation/src/Helpers/Entity/Lead.php

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -54,18 +54,7 @@ public function getEntity(mixed $entity)
5454
*/
5555
public function getAttributes(string $entityType, array $skipAttributes = ['textarea', 'image', 'file', 'address']): array
5656
{
57-
$attributes[] = [
58-
'id' => 'lead_pipeline_stage_id',
59-
'type' => 'select',
60-
'name' => 'Stage',
61-
'lookup_type' => 'lead_pipeline_stages',
62-
'options' => collect(),
63-
];
64-
65-
return array_merge(
66-
parent::getAttributes($entityType, $skipAttributes),
67-
$attributes
68-
);
57+
return parent::getAttributes($entityType, $skipAttributes);
6958
}
7059

7160
/**

0 commit comments

Comments
 (0)