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 95bf7dc commit ee50311Copy full SHA for ee50311
app/code/Magento/Directory/Helper/Data.php
@@ -422,6 +422,11 @@ private function getCurrentScope(): array
422
'type' => ScopeInterface::SCOPE_WEBSITE,
423
'value' => $request->getParam(ScopeInterface::SCOPE_WEBSITE),
424
];
425
+ } elseif ($request->getParam(ScopeInterface::SCOPE_STORE)) {
426
+ $scope = [
427
+ 'type' => ScopeInterface::SCOPE_STORE,
428
+ 'value' => $request->getParam(ScopeInterface::SCOPE_STORE),
429
+ ];
430
} elseif ($request->getParam(self::STORE_ID)) {
431
$scope = [
432
'type' => ScopeInterface::SCOPE_STORE,
0 commit comments