Skip to content

Commit 2761be1

Browse files
authoredApr 2, 2025··
Merge pull request #2134 from rohansingh754/remove-stage-duplicate
issue #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

+8-6
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

+1-1
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

+1-12
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)
Please sign in to comment.