We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec9c571 commit e590706Copy full SHA for e590706
app/code/Magento/AdminNotification/Block/Grid/Renderer/Actions.php
@@ -54,7 +54,7 @@ public function render(DataObject $row) : string
54
55
$markAsReadHtml = !$row->getData('is_read') ? '<a class="action-mark" href="' . $this->getUrl(
56
'*/*/markAsRead/',
57
- ['_current' => true, 'id' => $row->getData('id')]
+ ['_current' => true, 'id' => $row->getData('notification_id')]
58
) . '">' . __(
59
'Mark as Read'
60
) . '</a>' : '';
@@ -68,7 +68,7 @@ public function render(DataObject $row) : string
68
'*/*/remove/',
69
[
70
'_current' => true,
71
- 'id' => $row->getData('id'),
+ 'id' => $row->getData('notification_id'),
72
ActionInterface::PARAM_NAME_URL_ENCODED => $encodedUrl
73
]
74
),
0 commit comments