Skip to content

Commit 87732f3

Browse files
Fixed inherit doc and fetched parent-details from constant
Removed inherit doc as per magento documentation as well as changed parent-details to fetch from constant
1 parent 7170102 commit 87732f3

File tree

1 file changed

+6
-4
lines changed
  • app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier

1 file changed

+6
-4
lines changed

app/code/Magento/Bundle/Ui/DataProvider/Product/Form/Modifier/BundlePrice.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,10 @@ public function __construct(
3939
$this->locator = $locator;
4040
$this->arrayManager = $arrayManager;
4141
}
42-
42+
4343
/**
44-
* {@inheritdoc}
44+
* @param array $meta
45+
* @return array
4546
*/
4647
public function modifyMeta(array $meta)
4748
{
@@ -64,7 +65,7 @@ public function modifyMeta(array $meta)
6465
$this->arrayManager->findPath(
6566
ProductAttributeInterface::CODE_PRICE,
6667
$meta,
67-
'product-details/children',
68+
self::DEFAULT_GENERAL_PANEL.'/children',
6869
'children'
6970
) . static::META_CONFIG_PATH,
7071
$meta,
@@ -94,7 +95,8 @@ public function modifyMeta(array $meta)
9495
}
9596

9697
/**
97-
* {@inheritdoc}
98+
* @param array $data
99+
* @return array
98100
*/
99101
public function modifyData(array $data)
100102
{

0 commit comments

Comments
 (0)