Mindaugas Buja

Results 6 comments of Mindaugas Buja

Would be nice to have this updated in the .bash_profile file. There is even a pull request for it. Is this project still maintained?

For everyone receiving this error, here's the solution: ``` php // In Mdg_Giftregistry_Block_Adminhtml_Registries_Edit constructor $this->_blockGroup = 'mdg_giftregistry'; $this->_controller = 'adminhtml_registries'; $this->_mode = 'edit'; ```

For everybody who is still struggling with this issue, you can call `setLoadedRegistry` in IndexController's `editAction` method, like so: ``` php $registry_id = $this->getRequest()->getParam('registry_id'); $registry = Mage::getModel('mdg_giftregistry/entity')->load($registry_id); Mage::getSingleton('customer/session')->setLoadedRegistry($registry); ``` This...

This is causing a major problem for us when using a custom server, building on multiple architectures, and running multi-arch servers. Half of our server fleet is essentially unable to...

@jpudysz Any suggestions on getting Jest tests configured with the new Unistyles? I am so close 🤏 to upgrading my project to the new arch, and this is the final...

Ended up with this: ```js // jest.config.js module.exports = { moduleNameMapper: { 'react-native-unistyles': '/__mocks__/react-native-unistyles.js' }, setupFiles: ['/jest.setup.js'], // ... }; ``` ```js // jest.setup.js import './unistyles'; //