Skip to content

Commit

Permalink
Fix a bug in the initial setup configuration (#289)
Browse files Browse the repository at this point in the history
* Fix a bug in the initial setup configuration

* Upgrade version
  • Loading branch information
Aitor-Corrales committed Jul 6, 2023
1 parent 4ceaac1 commit d022c44
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "doofinder/doofinder-magento2",
"version": "0.13.2",
"version": "0.13.3",
"description": "Doofinder module for Magento 2",
"type": "magento2-module",
"require": {
Expand Down
2 changes: 1 addition & 1 deletion etc/module.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Module/etc/module.xsd">
<module name="Doofinder_Feed" setup_version="0.13.2">
<module name="Doofinder_Feed" setup_version="0.13.3">
<sequence>
<module name="Magento_Integration" />
</sequence>
Expand Down
2 changes: 1 addition & 1 deletion view/adminhtml/templates/setup.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
"buttonLogin": "#login-btn",
"signupEndpoint": "<?= $block->escapeUrl($this->helper(Doofinder\Feed\Helper\StoreConfig::class)->getSignupEndpoint()) ?>",
"loginEndpoint": "<?= $block->escapeUrl($this->helper(Doofinder\Feed\Helper\StoreConfig::class)->getLoginEndpoint()) ?>",
"paramsPopup": "<?= $block->escapeHtml($block->getParamsPopup()) ?>",
"paramsPopup": "<?= $block->getParamsPopup() ?>",
"checkAPIKeyUrl": "<?= $block->escapeUrl($block->getCheckAPIKeyUrl()) ?>",
"createStoreUrl": "<?= $block->escapeUrl($block->getCreateStoreUrl()) ?>",
"doofinderConnectUrl": "<?= $block->escapeUrl($block->getDoofinderConnectUrl()) ?>"
Expand Down

0 comments on commit d022c44

Please sign in to comment.