Skip to content

Commit 494e366

Browse files
committed
Merge branch 'MC-23790' of github.com:magento-cia/magento2ce into cia-bugfixes-2.4.4-develop-04112021
2 parents 2556f49 + 2f26733 commit 494e366

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

app/code/Magento/Cms/Ui/Component/Listing/Column/BlockActions.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -66,24 +66,24 @@ public function prepareDataSource(array $dataSource)
6666
'href' => $this->urlBuilder->getUrl(
6767
static::URL_PATH_EDIT,
6868
[
69-
'block_id' => $item['block_id'],
69+
'block_id' => $item['block_id']
7070
]
7171
),
72-
'label' => __('Edit'),
72+
'label' => __('Edit')
7373
],
7474
'delete' => [
7575
'href' => $this->urlBuilder->getUrl(
7676
static::URL_PATH_DELETE,
7777
[
78-
'block_id' => $item['block_id'],
78+
'block_id' => $item['block_id']
7979
]
8080
),
8181
'label' => __('Delete'),
8282
'confirm' => [
8383
'title' => __('Delete %1', $title),
84-
'message' => __('Are you sure you want to delete a %1 record?', $title),
84+
'message' => __('Are you sure you want to delete a %1 record?', $title)
8585
],
86-
'post' => true,
86+
'post' => true
8787
],
8888
];
8989
}

app/code/Magento/Ui/Component/Filters/Type/Select.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ public function prepare()
7979
'config',
8080
array_replace_recursive(
8181
(array)$this->wrappedComponent->getData('config'),
82-
(array)$this->getData('config')
82+
(array)$this->getData('config'),
83+
['__disableTmpl' => ['label' => true]]
8384
)
8485
);
8586

app/code/Magento/Ui/Component/Listing/Columns/Column.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ public function prepare()
8787
'config',
8888
array_replace_recursive(
8989
(array)$this->wrappedComponent->getData('config'),
90-
(array)$this->getData('config')
90+
(array)$this->getData('config'),
91+
['__disableTmpl' => ['label' => true]]
9192
)
9293
);
9394
}

0 commit comments

Comments
 (0)