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 46fe3fe commit 23abe42Copy full SHA for 23abe42
app/code/Magento/Integration/Block/Adminhtml/Widget/Grid/Column/Renderer/Name.php
@@ -22,7 +22,8 @@ public function render(\Magento\Framework\DataObject $row)
22
{
23
/** @var \Magento\Integration\Model\Integration $row */
24
$text = parent::render($row);
25
- if (!$this->isUrlSecure($row->getEndpoint()) || !$this->isUrlSecure($row->getIdentityLinkUrl())) {
+ if (($row->getEndpoint() && !$this->isUrlSecure($row->getEndpoint())) ||
26
+ ($row->getIdentityLinkUrl() && !$this->isUrlSecure($row->getIdentityLinkUrl()))) {
27
$text .= '<span class="security-notice"><span>' . __("Integration not secure") . '</span></span>';
28
}
29
return $text;
0 commit comments